Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
@ 2024-11-18 13:10 Imre Deak
  2024-11-18 13:16 ` Jani Nikula
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Imre Deak @ 2024-11-18 13:10 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jani Nikula, Rodrigo Vivi

The connector initialization in intel_dp_add_mst_connector() depends on
the device pointer in connector to be valid, at least by connector
debug printing. The device pointer is initialized by drm_connector_init(),
however that function also exposes the connector to in-kernel users,
which can't be done before the connector is fully initialized. For now
make sure the device pointer is valid before it's used, until a
follow-up change moving this to DRM core.

This issue was revealed by the commit in the Fixes: line below, before
which the above debug printing checked and handled a NULL device pointer
gracefully in DRM core.

Cc: Jani Nikula <jani.nikula@intel.com>
Fixes: 529798bd786a ("drm/i915/mst: convert to struct intel_display")
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12799
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp_mst.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index df7edcfe885b6..f058360a26413 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -1727,6 +1727,16 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
 
 	intel_dp_init_modeset_retry_work(intel_connector);
 
+	/*
+	 * TODO: The following drm_connector specific initialization belongs
+	 * to DRM core, however it happens atm too late in
+	 * drm_connector_init(). That function will also expose the connector
+	 * to in-kernel users, so it can't be called until the connector is
+	 * sufficiently initialized; init the device pointer used by the
+	 * following DSC setup, until a fix moving this to DRM core.
+	 */
+	intel_connector->base.dev = mgr->dev;
+
 	intel_connector->dp.dsc_decompression_aux = drm_dp_mst_dsc_aux_for_port(port);
 	intel_dp_mst_read_decompression_port_dsc_caps(intel_dp, intel_connector);
 	intel_connector->dp.dsc_hblank_expansion_quirk =
-- 
2.44.2


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
@ 2024-11-18 13:16 ` Jani Nikula
  2024-11-18 14:14 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2024-11-18 13:16 UTC (permalink / raw)
  To: Imre Deak, intel-gfx, intel-xe; +Cc: Rodrigo Vivi

On Mon, 18 Nov 2024, Imre Deak <imre.deak@intel.com> wrote:
> The connector initialization in intel_dp_add_mst_connector() depends on
> the device pointer in connector to be valid, at least by connector
> debug printing. The device pointer is initialized by drm_connector_init(),
> however that function also exposes the connector to in-kernel users,
> which can't be done before the connector is fully initialized. For now
> make sure the device pointer is valid before it's used, until a
> follow-up change moving this to DRM core.
>
> This issue was revealed by the commit in the Fixes: line below, before
> which the above debug printing checked and handled a NULL device pointer
> gracefully in DRM core.
>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Fixes: 529798bd786a ("drm/i915/mst: convert to struct intel_display")
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12799
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>

Reviewed-by: Jani Nikula <jani.nikula@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_dp_mst.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index df7edcfe885b6..f058360a26413 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -1727,6 +1727,16 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
>  
>  	intel_dp_init_modeset_retry_work(intel_connector);
>  
> +	/*
> +	 * TODO: The following drm_connector specific initialization belongs
> +	 * to DRM core, however it happens atm too late in
> +	 * drm_connector_init(). That function will also expose the connector
> +	 * to in-kernel users, so it can't be called until the connector is
> +	 * sufficiently initialized; init the device pointer used by the
> +	 * following DSC setup, until a fix moving this to DRM core.
> +	 */
> +	intel_connector->base.dev = mgr->dev;
> +
>  	intel_connector->dp.dsc_decompression_aux = drm_dp_mst_dsc_aux_for_port(port);
>  	intel_dp_mst_read_decompression_port_dsc_caps(intel_dp, intel_connector);
>  	intel_connector->dp.dsc_hblank_expansion_quirk =

-- 
Jani Nikula, Intel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.Patch_applied: success for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
  2024-11-18 13:16 ` Jani Nikula
@ 2024-11-18 14:14 ` Patchwork
  2024-11-18 14:15 ` ✓ CI.checkpatch: " Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:14 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 90014f8026e3 drm-tip: 2024y-11m-18d-09h-06m-48s UTC integration manifest
=== git am output follows ===
Applying: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.checkpatch: success for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
  2024-11-18 13:16 ` Jani Nikula
  2024-11-18 14:14 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-11-18 14:15 ` Patchwork
  2024-11-18 14:16 ` ✓ CI.KUnit: " Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:15 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : success

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
30ab6715fc09baee6cc14cb3c89ad8858688d474
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit f083f6670e8c839835e7ba5859c84057fed8bf53
Author: Imre Deak <imre.deak@intel.com>
Date:   Mon Nov 18 15:10:44 2024 +0200

    drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
    
    The connector initialization in intel_dp_add_mst_connector() depends on
    the device pointer in connector to be valid, at least by connector
    debug printing. The device pointer is initialized by drm_connector_init(),
    however that function also exposes the connector to in-kernel users,
    which can't be done before the connector is fully initialized. For now
    make sure the device pointer is valid before it's used, until a
    follow-up change moving this to DRM core.
    
    This issue was revealed by the commit in the Fixes: line below, before
    which the above debug printing checked and handled a NULL device pointer
    gracefully in DRM core.
    
    Cc: Jani Nikula <jani.nikula@intel.com>
    Fixes: 529798bd786a ("drm/i915/mst: convert to struct intel_display")
    Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12799
    Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Signed-off-by: Imre Deak <imre.deak@intel.com>
    Reviewed-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch 90014f8026e31874d368834834253debd131268b drm-intel
f083f6670e8c drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.KUnit: success for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
                   ` (2 preceding siblings ...)
  2024-11-18 14:15 ` ✓ CI.checkpatch: " Patchwork
@ 2024-11-18 14:16 ` Patchwork
  2024-11-18 14:34 ` ✓ CI.Build: " Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:16 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:15:10] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:15:15] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[14:15:43] Starting KUnit Kernel (1/1)...
[14:15:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:15:43] =================== guc_dbm (7 subtests) ===================
[14:15:43] [PASSED] test_empty
[14:15:43] [PASSED] test_default
[14:15:43] ======================== test_size  ========================
[14:15:43] [PASSED] 4
[14:15:43] [PASSED] 8
[14:15:43] [PASSED] 32
[14:15:43] [PASSED] 256
[14:15:43] ==================== [PASSED] test_size ====================
[14:15:43] ======================= test_reuse  ========================
[14:15:43] [PASSED] 4
[14:15:43] [PASSED] 8
[14:15:43] [PASSED] 32
[14:15:43] [PASSED] 256
[14:15:43] =================== [PASSED] test_reuse ====================
[14:15:43] =================== test_range_overlap  ====================
[14:15:43] [PASSED] 4
[14:15:43] [PASSED] 8
[14:15:43] [PASSED] 32
[14:15:43] [PASSED] 256
[14:15:43] =============== [PASSED] test_range_overlap ================
[14:15:43] =================== test_range_compact  ====================
[14:15:43] [PASSED] 4
[14:15:43] [PASSED] 8
[14:15:43] [PASSED] 32
[14:15:43] [PASSED] 256
[14:15:43] =============== [PASSED] test_range_compact ================
[14:15:43] ==================== test_range_spare  =====================
[14:15:43] [PASSED] 4
[14:15:43] [PASSED] 8
[14:15:43] [PASSED] 32
[14:15:43] [PASSED] 256
[14:15:43] ================ [PASSED] test_range_spare =================
[14:15:43] ===================== [PASSED] guc_dbm =====================
[14:15:43] =================== guc_idm (6 subtests) ===================
[14:15:43] [PASSED] bad_init
[14:15:43] [PASSED] no_init
[14:15:43] [PASSED] init_fini
[14:15:43] [PASSED] check_used
[14:15:43] [PASSED] check_quota
[14:15:43] [PASSED] check_all
[14:15:43] ===================== [PASSED] guc_idm =====================
[14:15:43] ================== no_relay (3 subtests) ===================
[14:15:43] [PASSED] xe_drops_guc2pf_if_not_ready
[14:15:43] [PASSED] xe_drops_guc2vf_if_not_ready
[14:15:43] [PASSED] xe_rejects_send_if_not_ready
[14:15:43] ==================== [PASSED] no_relay =====================
[14:15:43] ================== pf_relay (14 subtests) ==================
[14:15:43] [PASSED] pf_rejects_guc2pf_too_short
[14:15:43] [PASSED] pf_rejects_guc2pf_too_long
[14:15:43] [PASSED] pf_rejects_guc2pf_no_payload
[14:15:43] [PASSED] pf_fails_no_payload
[14:15:43] [PASSED] pf_fails_bad_origin
[14:15:43] [PASSED] pf_fails_bad_type
[14:15:43] [PASSED] pf_txn_reports_error
[14:15:43] [PASSED] pf_txn_sends_pf2guc
[14:15:43] [PASSED] pf_sends_pf2guc
[14:15:43] [SKIPPED] pf_loopback_nop
[14:15:43] [SKIPPED] pf_loopback_echo
[14:15:43] [SKIPPED] pf_loopback_fail
[14:15:43] [SKIPPED] pf_loopback_busy
[14:15:43] [SKIPPED] pf_loopback_retry
[14:15:43] ==================== [PASSED] pf_relay =====================
[14:15:43] ================== vf_relay (3 subtests) ===================
[14:15:43] [PASSED] vf_rejects_guc2vf_too_short
[14:15:43] [PASSED] vf_rejects_guc2vf_too_long
[14:15:43] [PASSED] vf_rejects_guc2vf_no_payload
[14:15:43] ==================== [PASSED] vf_relay =====================
[14:15:43] ================= pf_service (11 subtests) =================
[14:15:43] [PASSED] pf_negotiate_any
[14:15:43] [PASSED] pf_negotiate_base_match
[14:15:43] [PASSED] pf_negotiate_base_newer
[14:15:43] [PASSED] pf_negotiate_base_next
[14:15:43] [SKIPPED] pf_negotiate_base_older
[14:15:43] [PASSED] pf_negotiate_base_prev
[14:15:43] [PASSED] pf_negotiate_latest_match
[14:15:43] [PASSED] pf_negotiate_latest_newer
[14:15:43] [PASSED] pf_negotiate_latest_next
[14:15:43] [SKIPPED] pf_negotiate_latest_older
[14:15:43] [SKIPPED] pf_negotiate_latest_prev
[14:15:43] =================== [PASSED] pf_service ====================
[14:15:43] ===================== lmtt (1 subtest) =====================
[14:15:43] ======================== test_ops  =========================
[14:15:43] [PASSED] 2-level
[14:15:43] [PASSED] multi-level
[14:15:43] ==================== [PASSED] test_ops =====================
[14:15:43] ====================== [PASSED] lmtt =======================
[14:15:43] =================== xe_mocs (2 subtests) ===================
[14:15:43] ================ xe_live_mocs_kernel_kunit  ================
[14:15:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:15:43] ================ xe_live_mocs_reset_kunit  =================
[14:15:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:15:43] ==================== [SKIPPED] xe_mocs =====================
[14:15:43] ================= xe_migrate (2 subtests) ==================
[14:15:43] ================= xe_migrate_sanity_kunit  =================
[14:15:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:15:43] ================== xe_validate_ccs_kunit  ==================
[14:15:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:15:43] =================== [SKIPPED] xe_migrate ===================
[14:15:43] ================== xe_dma_buf (1 subtest) ==================
[14:15:43] ==================== xe_dma_buf_kunit  =====================
[14:15:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:15:43] =================== [SKIPPED] xe_dma_buf ===================
[14:15:43] ==================== xe_bo (3 subtests) ====================
[14:15:43] ================== xe_ccs_migrate_kunit  ===================
[14:15:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:15:43] ==================== xe_bo_evict_kunit  ====================
[14:15:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:15:43] =================== xe_bo_shrink_kunit  ====================
[14:15:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:15:43] ===================== [SKIPPED] xe_bo ======================
[14:15:43] ==================== args (11 subtests) ====================
[14:15:43] [PASSED] count_args_test
[14:15:43] [PASSED] call_args_example
[14:15:43] [PASSED] call_args_test
[14:15:43] [PASSED] drop_first_arg_example
[14:15:43] [PASSED] drop_first_arg_test
[14:15:43] [PASSED] first_arg_example
[14:15:43] [PASSED] first_arg_test
[14:15:43] [PASSED] last_arg_example
[14:15:43] [PASSED] last_arg_test
[14:15:43] [PASSED] pick_arg_example
[14:15:43] [PASSED] sep_comma_examplestty: 'standard input': Inappropriate ioctl for device

[14:15:43] ====================== [PASSED] args =======================
[14:15:43] =================== xe_pci (2 subtests) ====================
[14:15:43] [PASSED] xe_gmdid_graphics_ip
[14:15:43] [PASSED] xe_gmdid_media_ip
[14:15:43] ===================== [PASSED] xe_pci ======================
[14:15:43] =================== xe_rtp (2 subtests) ====================
[14:15:43] =============== xe_rtp_process_to_sr_tests  ================
[14:15:43] [PASSED] coalesce-same-reg
[14:15:43] [PASSED] no-match-no-add
[14:15:43] [PASSED] match-or
[14:15:43] [PASSED] match-or-xfail
[14:15:43] [PASSED] no-match-no-add-multiple-rules
[14:15:43] [PASSED] two-regs-two-entries
[14:15:43] [PASSED] clr-one-set-other
[14:15:43] [PASSED] set-field
[14:15:43] [PASSED] conflict-duplicate
[14:15:43] [PASSED] conflict-not-disjoint
[14:15:43] [PASSED] conflict-reg-type
[14:15:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:15:43] ================== xe_rtp_process_tests  ===================
[14:15:43] [PASSED] active1
[14:15:43] [PASSED] active2
[14:15:43] [PASSED] active-inactive
[14:15:43] [PASSED] inactive-active
[14:15:43] [PASSED] inactive-1st_or_active-inactive
[14:15:43] [PASSED] inactive-2nd_or_active-inactive
[14:15:43] [PASSED] inactive-last_or_active-inactive
[14:15:43] [PASSED] inactive-no_or_active-inactive
[14:15:43] ============== [PASSED] xe_rtp_process_tests ===============
[14:15:43] ===================== [PASSED] xe_rtp ======================
[14:15:43] ==================== xe_wa (1 subtest) =====================
[14:15:43] ======================== xe_wa_gt  =========================
[14:15:43] [PASSED] TIGERLAKE (B0)
[14:15:43] [PASSED] DG1 (A0)
[14:15:43] [PASSED] DG1 (B0)
[14:15:43] [PASSED] ALDERLAKE_S (A0)
[14:15:43] [PASSED] ALDERLAKE_S (B0)
[14:15:43] [PASSED] ALDERLAKE_S (C0)
[14:15:43] [PASSED] ALDERLAKE_S (D0)
[14:15:43] [PASSED] ALDERLAKE_P (A0)
[14:15:43] [PASSED] ALDERLAKE_P (B0)
[14:15:43] [PASSED] ALDERLAKE_P (C0)
[14:15:43] [PASSED] ALDERLAKE_S_RPLS (D0)
[14:15:43] [PASSED] ALDERLAKE_P_RPLU (E0)
[14:15:43] [PASSED] DG2_G10 (C0)
[14:15:43] [PASSED] DG2_G11 (B1)
[14:15:43] [PASSED] DG2_G12 (A1)
[14:15:43] [PASSED] METEORLAKE (g:A0, m:A0)
[14:15:43] [PASSED] METEORLAKE (g:A0, m:A0)
[14:15:43] [PASSED] METEORLAKE (g:A0, m:A0)
[14:15:43] [PASSED] LUNARLAKE (g:A0, m:A0)
[14:15:43] [PASSED] LUNARLAKE (g:B0, m:A0)
[14:15:43] [PASSED] BATTLEMAGE (g:A0, m:A1)
[14:15:43] ==================== [PASSED] xe_wa_gt =====================
[14:15:43] ====================== [PASSED] xe_wa ======================
[14:15:43] ============================================================
[14:15:43] Testing complete. Ran 122 tests: passed: 106, skipped: 16
[14:15:43] Elapsed time: 32.845s total, 4.493s configuring, 28.085s building, 0.228s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:15:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:15:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[14:16:08] Starting KUnit Kernel (1/1)...
[14:16:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:16:08] ================== drm_buddy (7 subtests) ==================
[14:16:08] [PASSED] drm_test_buddy_alloc_limit
[14:16:08] [PASSED] drm_test_buddy_alloc_optimistic
[14:16:08] [PASSED] drm_test_buddy_alloc_pessimistic
[14:16:08] [PASSED] drm_test_buddy_alloc_pathological
[14:16:08] [PASSED] drm_test_buddy_alloc_contiguous
[14:16:08] [PASSED] drm_test_buddy_alloc_clear
[14:16:08] [PASSED] drm_test_buddy_alloc_range_bias
[14:16:08] ==================== [PASSED] drm_buddy ====================
[14:16:08] ============= drm_cmdline_parser (40 subtests) =============
[14:16:08] [PASSED] drm_test_cmdline_force_d_only
[14:16:08] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:16:08] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:16:08] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:16:08] [PASSED] drm_test_cmdline_force_e_only
[14:16:08] [PASSED] drm_test_cmdline_res
[14:16:08] [PASSED] drm_test_cmdline_res_vesa
[14:16:08] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:16:08] [PASSED] drm_test_cmdline_res_rblank
[14:16:08] [PASSED] drm_test_cmdline_res_bpp
[14:16:08] [PASSED] drm_test_cmdline_res_refresh
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:16:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:16:08] [PASSED] drm_test_cmdline_res_margins_force_on
[14:16:08] [PASSED] drm_test_cmdline_res_vesa_margins
[14:16:08] [PASSED] drm_test_cmdline_name
[14:16:08] [PASSED] drm_test_cmdline_name_bpp
[14:16:08] [PASSED] drm_test_cmdline_name_option
[14:16:08] [PASSED] drm_test_cmdline_name_bpp_option
[14:16:08] [PASSED] drm_test_cmdline_rotate_0
[14:16:08] [PASSED] drm_test_cmdline_rotate_90
[14:16:08] [PASSED] drm_test_cmdline_rotate_180
[14:16:08] [PASSED] drm_test_cmdline_rotate_270
[14:16:08] [PASSED] drm_test_cmdline_hmirror
[14:16:08] [PASSED] drm_test_cmdline_vmirror
[14:16:08] [PASSED] drm_test_cmdline_margin_options
[14:16:08] [PASSED] drm_test_cmdline_multiple_options
[14:16:08] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:16:08] [PASSED] drm_test_cmdline_extra_and_option
[14:16:08] [PASSED] drm_test_cmdline_freestanding_options
[14:16:08] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:16:08] [PASSED] drm_test_cmdline_panel_orientation
[14:16:08] ================ drm_test_cmdline_invalid  =================
[14:16:08] [PASSED] margin_only
[14:16:08] [PASSED] interlace_only
[14:16:08] [PASSED] res_missing_x
[14:16:08] [PASSED] res_missing_y
[14:16:08] [PASSED] res_bad_y
[14:16:08] [PASSED] res_missing_y_bpp
[14:16:08] [PASSED] res_bad_bpp
[14:16:08] [PASSED] res_bad_refresh
[14:16:08] [PASSED] res_bpp_refresh_force_on_off
[14:16:08] [PASSED] res_invalid_mode
[14:16:08] [PASSED] res_bpp_wrong_place_mode
[14:16:08] [PASSED] name_bpp_refresh
[14:16:08] [PASSED] name_refresh
[14:16:08] [PASSED] name_refresh_wrong_mode
[14:16:08] [PASSED] name_refresh_invalid_mode
[14:16:08] [PASSED] rotate_multiple
[14:16:08] [PASSED] rotate_invalid_val
[14:16:08] [PASSED] rotate_truncated
[14:16:08] [PASSED] invalid_option
[14:16:08] [PASSED] invalid_tv_option
[14:16:08] [PASSED] truncated_tv_option
[14:16:08] ============ [PASSED] drm_test_cmdline_invalid =============
[14:16:08] =============== drm_test_cmdline_tv_options  ===============
[14:16:08] [PASSED] NTSC
[14:16:08] [PASSED] NTSC_443
[14:16:08] [PASSED] NTSC_J
[14:16:08] [PASSED] PAL
[14:16:08] [PASSED] PAL_M
[14:16:08] [PASSED] PAL_N
[14:16:08] [PASSED] SECAM
[14:16:08] [PASSED] MONO_525
[14:16:08] [PASSED] MONO_625
[14:16:08] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:16:08] =============== [PASSED] drm_cmdline_parser ================
[14:16:08] ========== drmm_connector_hdmi_init (19 subtests) ==========
[14:16:08] [PASSED] drm_test_connector_hdmi_init_valid
[14:16:08] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:16:08] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:16:08] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:16:08] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:16:08] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:16:08] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:16:08] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:16:08] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:16:08] [PASSED] drm_test_connector_hdmi_init_null_product
[14:16:08] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:16:08] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:16:08] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:16:08] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:16:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:16:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:16:08] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:16:08] ========= drm_test_connector_hdmi_init_type_valid  =========
[14:16:08] [PASSED] HDMI-A
[14:16:08] [PASSED] HDMI-B
[14:16:08] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:16:08] ======== drm_test_connector_hdmi_init_type_invalid  ========
[14:16:08] [PASSED] Unknown
[14:16:08] [PASSED] VGA
[14:16:08] [PASSED] DVI-I
[14:16:08] [PASSED] DVI-D
[14:16:08] [PASSED] DVI-A
[14:16:08] [PASSED] Composite
[14:16:08] [PASSED] SVIDEO
[14:16:08] [PASSED] LVDS
[14:16:08] [PASSED] Component
[14:16:08] [PASSED] DIN
[14:16:08] [PASSED] DP
[14:16:08] [PASSED] TV
[14:16:08] [PASSED] eDP
[14:16:08] [PASSED] Virtual
[14:16:08] [PASSED] DSI
[14:16:08] [PASSED] DPI
[14:16:08] [PASSED] Writeback
[14:16:08] [PASSED] SPI
[14:16:08] [PASSED] USB
[14:16:08] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:16:08] ============ [PASSED] drmm_connector_hdmi_init =============
[14:16:08] ============= drmm_connector_init (3 subtests) =============
[14:16:08] [PASSED] drm_test_drmm_connector_init
[14:16:08] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:16:08] ========= drm_test_drmm_connector_init_type_valid  =========
[14:16:08] [PASSED] Unknown
[14:16:08] [PASSED] VGA
[14:16:08] [PASSED] DVI-I
[14:16:08] [PASSED] DVI-D
[14:16:08] [PASSED] DVI-A
[14:16:08] [PASSED] Composite
[14:16:08] [PASSED] SVIDEO
[14:16:08] [PASSED] LVDS
[14:16:08] [PASSED] Component
[14:16:08] [PASSED] DIN
[14:16:08] [PASSED] DP
[14:16:08] [PASSED] HDMI-A
[14:16:08] [PASSED] HDMI-B
[14:16:08] [PASSED] TV
[14:16:08] [PASSED] eDP
[14:16:08] [PASSED] Virtual
[14:16:08] [PASSED] DSI
[14:16:08] [PASSED] DPI
[14:16:08] [PASSED] Writeback
[14:16:08] [PASSED] SPI
[14:16:08] [PASSED] USB
[14:16:08] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:16:08] =============== [PASSED] drmm_connector_init ===============
[14:16:08] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:16:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:16:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:16:08] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:16:08] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:16:08] ========== drm_test_get_tv_mode_from_name_valid  ===========
[14:16:08] [PASSED] NTSC
[14:16:08] [PASSED] NTSC-443
[14:16:08] [PASSED] NTSC-J
[14:16:08] [PASSED] PAL
[14:16:08] [PASSED] PAL-M
[14:16:08] [PASSED] PAL-N
[14:16:08] [PASSED] SECAM
[14:16:08] [PASSED] Mono
[14:16:08] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:16:08] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:16:08] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:16:08] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:16:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:16:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:16:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:16:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:16:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:16:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:16:08] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[14:16:08] [PASSED] VIC 96
[14:16:08] [PASSED] VIC 97
[14:16:08] [PASSED] VIC 101
[14:16:08] [PASSED] VIC 102
[14:16:08] [PASSED] VIC 106
[14:16:08] [PASSED] VIC 107
[14:16:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:16:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:16:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:16:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:16:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:16:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:16:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:16:08] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:16:08] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[14:16:08] [PASSED] Automatic
[14:16:08] [PASSED] Full
[14:16:08] [PASSED] Limited 16:235
[14:16:08] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:16:08] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:16:08] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:16:08] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:16:08] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[14:16:08] [PASSED] RGB
[14:16:08] [PASSED] YUV 4:2:0
[14:16:08] [PASSED] YUV 4:2:2
[14:16:08] [PASSED] YUV 4:4:4
[14:16:08] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:16:08] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:16:08] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:16:08] ============= drm_damage_helper (21 subtests) ==============
[14:16:08] [PASSED] drm_test_damage_iter_no_damage
[14:16:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:16:08] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:16:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:16:08] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:16:08] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:16:08] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:16:08] [PASSED] drm_test_damage_iter_simple_damage
[14:16:08] [PASSED] drm_test_damage_iter_single_damage
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:16:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:16:08] [PASSED] drm_test_damage_iter_damage
[14:16:08] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:16:08] [PASSED] drm_test_damage_iter_damage_one_outside
[14:16:08] [PASSED] drm_test_damage_iter_damage_src_moved
[14:16:08] [PASSED] drm_test_damage_iter_damage_not_visible
[14:16:08] ================ [PASSED] drm_damage_helper ================
[14:16:08] ============== drm_dp_mst_helper (3 subtests) ==============
[14:16:08] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[14:16:08] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:16:08] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:16:08] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:16:08] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:16:08] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:16:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:16:08] ============== drm_test_dp_mst_calc_pbn_div  ===============
[14:16:08] [PASSED] Link rate 2000000 lane count 4
[14:16:08] [PASSED] Link rate 2000000 lane count 2
[14:16:08] [PASSED] Link rate 2000000 lane count 1
[14:16:08] [PASSED] Link rate 1350000 lane count 4
[14:16:08] [PASSED] Link rate 1350000 lane count 2
[14:16:08] [PASSED] Link rate 1350000 lane count 1
[14:16:08] [PASSED] Link rate 1000000 lane count 4
[14:16:08] [PASSED] Link rate 1000000 lane count 2
[14:16:08] [PASSED] Link rate 1000000 lane count 1
[14:16:08] [PASSED] Link rate 810000 lane count 4
[14:16:08] [PASSED] Link rate 810000 lane count 2
[14:16:08] [PASSED] Link rate 810000 lane count 1
[14:16:08] [PASSED] Link rate 540000 lane count 4
[14:16:08] [PASSED] Link rate 540000 lane count 2
[14:16:08] [PASSED] Link rate 540000 lane count 1
[14:16:08] [PASSED] Link rate 270000 lane count 4
[14:16:08] [PASSED] Link rate 270000 lane count 2
[14:16:08] [PASSED] Link rate 270000 lane count 1
[14:16:08] [PASSED] Link rate 162000 lane count 4
[14:16:08] [PASSED] Link rate 162000 lane count 2
[14:16:08] [PASSED] Link rate 162000 lane count 1
[14:16:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:16:08] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[14:16:08] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:16:08] [PASSED] DP_POWER_UP_PHY with port number
[14:16:08] [PASSED] DP_POWER_DOWN_PHY with port number
[14:16:08] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:16:08] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:16:08] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:16:08] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:16:08] [PASSED] DP_QUERY_PAYLOAD with port number
[14:16:08] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:16:08] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:16:08] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:16:08] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:16:08] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:16:08] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:16:08] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:16:08] [PASSED] DP_REMOTE_I2C_READ with port number
[14:16:08] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:16:08] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:16:08] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:16:08] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:16:08] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:16:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:16:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:16:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:16:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:16:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:16:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:16:08] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:16:08] ================ [PASSED] drm_dp_mst_helper ================
[14:16:08] ================== drm_exec (7 subtests) ===================
[14:16:08] [PASSED] sanitycheck
[14:16:08] [PASSED] test_lock
[14:16:08] [PASSED] test_lock_unlock
[14:16:08] [PASSED] test_duplicates
[14:16:08] [PASSED] test_prepare
[14:16:08] [PASSED] test_prepare_array
[14:16:08] [PASSED] test_multiple_loops
[14:16:08] ==================== [PASSED] drm_exec =====================
[14:16:08] =========== drm_format_helper_test (17 subtests) ===========
[14:16:08] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:16:08] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:16:08] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:16:08] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:16:08] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:16:08] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:16:08] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:16:08] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:16:08] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:16:08] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:16:08] ============== drm_test_fb_xrgb8888_to_mono  ===============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:16:08] ==================== drm_test_fb_swab  =====================
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ================ [PASSED] drm_test_fb_swab =================
[14:16:08] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:16:08] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[14:16:08] [PASSED] single_pixel_source_buffer
[14:16:08] [PASSED] single_pixel_clip_rectangle
[14:16:08] [PASSED] well_known_colors
[14:16:08] [PASSED] destination_pitch
[14:16:08] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:16:08] ================= drm_test_fb_clip_offset  =================
[14:16:08] [PASSED] pass through
[14:16:08] [PASSED] horizontal offset
[14:16:08] [PASSED] vertical offset
[14:16:08] [PASSED] horizontal and vertical offset
[14:16:08] [PASSED] horizontal offset (custom pitch)
[14:16:08] [PASSED] vertical offset (custom pitch)
[14:16:08] [PASSED] horizontal and vertical offset (custom pitch)
[14:16:08] ============= [PASSED] drm_test_fb_clip_offset =============
[14:16:08] ============== drm_test_fb_build_fourcc_list  ==============
[14:16:08] [PASSED] no native formats
[14:16:08] [PASSED] XRGB8888 as native format
[14:16:08] [PASSED] remove duplicates
[14:16:08] [PASSED] convert alpha formats
[14:16:08] [PASSED] random formats
[14:16:08] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[14:16:08] =================== drm_test_fb_memcpy  ====================
[14:16:08] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:16:08] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:16:08] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:16:08] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:16:08] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:16:08] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:16:08] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:16:08] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:16:08] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:16:08] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:16:08] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:16:08] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:16:08] =============== [PASSED] drm_test_fb_memcpy ================
[14:16:08] ============= [PASSED] drm_format_helper_test ==============
[14:16:08] ================= drm_format (18 subtests) =================
[14:16:08] [PASSED] drm_test_format_block_width_invalid
[14:16:08] [PASSED] drm_test_format_block_width_one_plane
[14:16:08] [PASSED] drm_test_format_block_width_two_plane
[14:16:08] [PASSED] drm_test_format_block_width_three_plane
[14:16:08] [PASSED] drm_test_format_block_width_tiled
[14:16:08] [PASSED] drm_test_format_block_height_invalid
[14:16:08] [PASSED] drm_test_format_block_height_one_plane
[14:16:08] [PASSED] drm_test_format_block_height_two_plane
[14:16:08] [PASSED] drm_test_format_block_height_three_plane
[14:16:08] [PASSED] drm_test_format_block_height_tiled
[14:16:08] [PASSED] drm_test_format_min_pitch_invalid
[14:16:08] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:16:08] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:16:08] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:16:08] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:16:08] [PASSED] drm_test_format_min_pitch_two_plane
[14:16:08] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:16:08] [PASSED] drm_test_format_min_pitch_tiled
[14:16:08] =================== [PASSED] drm_format ====================
[14:16:08] ============== drm_framebuffer (10 subtests) ===============
[14:16:08] ========== drm_test_framebuffer_check_src_coords  ==========
[14:16:08] [PASSED] Success: source fits into fb
[14:16:08] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:16:08] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:16:08] [PASSED] Fail: overflowing fb with source width
[14:16:08] [PASSED] Fail: overflowing fb with source height
[14:16:08] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:16:08] [PASSED] drm_test_framebuffer_cleanup
[14:16:08] =============== drm_test_framebuffer_create  ===============
[14:16:08] [PASSED] ABGR8888 normal sizes
[14:16:08] [PASSED] ABGR8888 max sizes
[14:16:08] [PASSED] ABGR8888 pitch greater than min required
[14:16:08] [PASSED] ABGR8888 pitch less than min required
[14:16:08] [PASSED] ABGR8888 Invalid width
[14:16:08] [PASSED] ABGR8888 Invalid buffer handle
[14:16:08] [PASSED] No pixel format
[14:16:08] [PASSED] ABGR8888 Width 0
[14:16:08] [PASSED] ABGR8888 Height 0
[14:16:08] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:16:08] [PASSED] ABGR8888 Large buffer offset
[14:16:08] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:16:08] [PASSED] ABGR8888 Invalid flag
[14:16:08] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:16:08] [PASSED] ABGR8888 Valid buffer modifier
[14:16:08] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:16:08] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] NV12 Normal sizes
[14:16:08] [PASSED] NV12 Max sizes
[14:16:08] [PASSED] NV12 Invalid pitch
[14:16:08] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:16:08] [PASSED] NV12 different  modifier per-plane
[14:16:08] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:16:08] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] NV12 Modifier for inexistent plane
[14:16:08] [PASSED] NV12 Handle for inexistent plane
[14:16:08] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:16:08] [PASSED] YVU420 Normal sizes
[14:16:08] [PASSED] YVU420 Max sizes
[14:16:08] [PASSED] YVU420 Invalid pitch
[14:16:08] [PASSED] YVU420 Different pitches
[14:16:08] [PASSED] YVU420 Different buffer offsets/pitches
[14:16:08] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:16:08] [PASSED] YVU420 Valid modifier
[14:16:08] [PASSED] YVU420 Different modifiers per plane
[14:16:08] [PASSED] YVU420 Modifier for inexistent plane
[14:16:08] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:16:08] [PASSED] X0L2 Normal sizes
[14:16:08] [PASSED] X0L2 Max sizes
[14:16:08] [PASSED] X0L2 Invalid pitch
[14:16:08] [PASSED] X0L2 Pitch greater than minimum required
[14:16:08] [PASSED] X0L2 Handle for inexistent plane
[14:16:08] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:16:08] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:16:08] [PASSED] X0L2 Valid modifier
[14:16:08] [PASSED] X0L2 Modifier for inexistent plane
[14:16:08] =========== [PASSED] drm_test_framebuffer_create ===========
[14:16:08] [PASSED] drm_test_framebuffer_free
[14:16:08] [PASSED] drm_test_framebuffer_init
[14:16:08] [PASSED] drm_test_framebuffer_init_bad_format
[14:16:08] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:16:08] [PASSED] drm_test_framebuffer_lookup
[14:16:08] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:16:08] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:16:08] ================= [PASSED] drm_framebuffer =================
[14:16:08] ================ drm_gem_shmem (8 subtests) ================
[14:16:08] [PASSED] drm_gem_shmem_test_obj_create
[14:16:08] [PASSED] drm_gem_shmem_test_obj_create_private
[14:16:08] [PASSED] drm_gem_shmem_test_pin_pages
[14:16:08] [PASSED] drm_gem_shmem_test_vmap
[14:16:08] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:16:08] [PASSED] drm_gem_shmem_test_get_sg_table
[14:16:08] [PASSED] drm_gem_shmem_test_madvise
[14:16:08] [PASSED] drm_gem_shmem_test_purge
[14:16:08] ================== [PASSED] drm_gem_shmem ==================
[14:16:08] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:16:08] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:16:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[14:16:08] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[14:16:08] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:16:08] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:16:08] [PASSED] drm_test_check_output_bpc_dvi
[14:16:08] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:16:08] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:16:08] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:16:08] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:16:08] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:16:08] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:16:08] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:16:08] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:16:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:16:08] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:16:08] [PASSED] drm_test_check_broadcast_rgb_value
[14:16:08] [PASSED] drm_test_check_bpc_8_value
[14:16:08] [PASSED] drm_test_check_bpc_10_value
[14:16:08] [PASSED] drm_test_check_bpc_12_value
[14:16:08] [PASSED] drm_test_check_format_value
[14:16:08] [PASSED] drm_test_check_tmds_char_value
[14:16:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:16:08] ================= drm_managed (2 subtests) =================
[14:16:08] [PASSED] drm_test_managed_release_action
[14:16:08] [PASSED] drm_test_managed_run_action
[14:16:08] =================== [PASSED] drm_managed ===================
[14:16:08] =================== drm_mm (6 subtests) ====================
[14:16:08] [PASSED] drm_test_mm_init
[14:16:08] [PASSED] drm_test_mm_debug
[14:16:08] [PASSED] drm_test_mm_align32
[14:16:08] [PASSED] drm_test_mm_align64
[14:16:08] [PASSED] drm_test_mm_lowest
[14:16:08] [PASSED] drm_test_mm_highest
[14:16:08] ===================== [PASSED] drm_mm ======================
[14:16:08] ============= drm_modes_analog_tv (5 subtests) =============
[14:16:08] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:16:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:16:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:16:08] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:16:08] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:16:08] =============== [PASSED] drm_modes_analog_tv ===============
stty: 'standard input': Inappropriate ioctl for device
[14:16:08] ============== drm_plane_helper (2 subtests) ===============
[14:16:08] =============== drm_test_check_plane_state  ================
[14:16:08] [PASSED] clipping_simple
[14:16:08] [PASSED] clipping_rotate_reflect
[14:16:08] [PASSED] positioning_simple
[14:16:08] [PASSED] upscaling
[14:16:08] [PASSED] downscaling
[14:16:08] [PASSED] rounding1
[14:16:08] [PASSED] rounding2
[14:16:08] [PASSED] rounding3
[14:16:08] [PASSED] rounding4
[14:16:08] =========== [PASSED] drm_test_check_plane_state ============
[14:16:08] =========== drm_test_check_invalid_plane_state  ============
[14:16:08] [PASSED] positioning_invalid
[14:16:08] [PASSED] upscaling_invalid
[14:16:08] [PASSED] downscaling_invalid
[14:16:08] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:16:08] ================ [PASSED] drm_plane_helper =================
[14:16:08] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:16:08] ====== drm_test_connector_helper_tv_get_modes_check  =======
[14:16:08] [PASSED] None
[14:16:08] [PASSED] PAL
[14:16:08] [PASSED] NTSC
[14:16:08] [PASSED] Both, NTSC Default
[14:16:08] [PASSED] Both, PAL Default
[14:16:08] [PASSED] Both, NTSC Default, with PAL on command-line
[14:16:08] [PASSED] Both, PAL Default, with NTSC on command-line
[14:16:08] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:16:08] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:16:08] ================== drm_rect (9 subtests) ===================
[14:16:08] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:16:08] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:16:08] [PASSED] drm_test_rect_clip_scaled_clipped
[14:16:08] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:16:08] ================= drm_test_rect_intersect  =================
[14:16:08] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:16:08] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:16:08] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:16:08] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:16:08] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:16:08] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:16:08] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:16:08] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:16:08] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:16:08] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:16:08] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:16:08] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:16:08] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:16:08] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:16:08] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:16:08] ============= [PASSED] drm_test_rect_intersect =============
[14:16:08] ================ drm_test_rect_calc_hscale  ================
[14:16:08] [PASSED] normal use
[14:16:08] [PASSED] out of max range
[14:16:08] [PASSED] out of min range
[14:16:08] [PASSED] zero dst
[14:16:08] [PASSED] negative src
[14:16:08] [PASSED] negative dst
[14:16:08] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:16:08] ================ drm_test_rect_calc_vscale  ================
[14:16:08] [PASSED] normal use
[14:16:08] [PASSED] out of max range
[14:16:08] [PASSED] out of min range
[14:16:08] [PASSED] zero dst
[14:16:08] [PASSED] negative src
[14:16:08] [PASSED] negative dst
[14:16:08] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:16:08] ================== drm_test_rect_rotate  ===================
[14:16:08] [PASSED] reflect-x
[14:16:08] [PASSED] reflect-y
[14:16:08] [PASSED] rotate-0
[14:16:08] [PASSED] rotate-90
[14:16:08] [PASSED] rotate-180
[14:16:08] [PASSED] rotate-270
[14:16:08] ============== [PASSED] drm_test_rect_rotate ===============
[14:16:08] ================ drm_test_rect_rotate_inv  =================
[14:16:08] [PASSED] reflect-x
[14:16:08] [PASSED] reflect-y
[14:16:08] [PASSED] rotate-0
[14:16:08] [PASSED] rotate-90
[14:16:08] [PASSED] rotate-180
[14:16:08] [PASSED] rotate-270
[14:16:08] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:16:08] ==================== [PASSED] drm_rect =====================
[14:16:08] ============================================================
[14:16:08] Testing complete. Ran 526 tests: passed: 526
[14:16:08] Elapsed time: 24.860s total, 1.601s configuring, 23.041s building, 0.177s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:16:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:16:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
[14:16:18] Starting KUnit Kernel (1/1)...
[14:16:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:16:18] ================= ttm_device (5 subtests) ==================
[14:16:18] [PASSED] ttm_device_init_basic
[14:16:18] [PASSED] ttm_device_init_multiple
[14:16:18] [PASSED] ttm_device_fini_basic
[14:16:18] [PASSED] ttm_device_init_no_vma_man
[14:16:18] ================== ttm_device_init_pools  ==================
[14:16:18] [PASSED] No DMA allocations, no DMA32 required
[14:16:18] [PASSED] DMA allocations, DMA32 required
[14:16:18] [PASSED] No DMA allocations, DMA32 required
[14:16:18] [PASSED] DMA allocations, no DMA32 required
[14:16:18] ============== [PASSED] ttm_device_init_pools ==============
[14:16:18] =================== [PASSED] ttm_device ====================
[14:16:18] ================== ttm_pool (8 subtests) ===================
[14:16:18] ================== ttm_pool_alloc_basic  ===================
[14:16:18] [PASSED] One page
[14:16:18] [PASSED] More than one page
[14:16:18] [PASSED] Above the allocation limit
[14:16:18] [PASSED] One page, with coherent DMA mappings enabled
[14:16:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:16:18] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:16:18] ============== ttm_pool_alloc_basic_dma_addr  ==============
[14:16:18] [PASSED] One page
[14:16:18] [PASSED] More than one page
[14:16:18] [PASSED] Above the allocation limit
[14:16:18] [PASSED] One page, with coherent DMA mappings enabled
[14:16:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:16:18] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:16:18] [PASSED] ttm_pool_alloc_order_caching_match
[14:16:18] [PASSED] ttm_pool_alloc_caching_mismatch
[14:16:18] [PASSED] ttm_pool_alloc_order_mismatch
[14:16:18] [PASSED] ttm_pool_free_dma_alloc
[14:16:18] [PASSED] ttm_pool_free_no_dma_alloc
[14:16:18] [PASSED] ttm_pool_fini_basic
[14:16:18] ==================== [PASSED] ttm_pool =====================
[14:16:18] ================ ttm_resource (8 subtests) =================
[14:16:18] ================= ttm_resource_init_basic  =================
[14:16:18] [PASSED] Init resource in TTM_PL_SYSTEM
[14:16:18] [PASSED] Init resource in TTM_PL_VRAM
[14:16:18] [PASSED] Init resource in a private placement
[14:16:18] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:16:18] ============= [PASSED] ttm_resource_init_basic =============
[14:16:18] [PASSED] ttm_resource_init_pinned
[14:16:18] [PASSED] ttm_resource_fini_basic
[14:16:18] [PASSED] ttm_resource_manager_init_basic
[14:16:18] [PASSED] ttm_resource_manager_usage_basic
[14:16:18] [PASSED] ttm_resource_manager_set_used_basic
[14:16:18] [PASSED] ttm_sys_man_alloc_basic
[14:16:18] [PASSED] ttm_sys_man_free_basic
[14:16:18] ================== [PASSED] ttm_resource ===================
[14:16:18] =================== ttm_tt (15 subtests) ===================
[14:16:18] ==================== ttm_tt_init_basic  ====================
[14:16:18] [PASSED] Page-aligned size
[14:16:18] [PASSED] Extra pages requested
[14:16:18] ================ [PASSED] ttm_tt_init_basic ================
[14:16:18] [PASSED] ttm_tt_init_misaligned
[14:16:18] [PASSED] ttm_tt_fini_basic
[14:16:18] [PASSED] ttm_tt_fini_sg
[14:16:18] [PASSED] ttm_tt_fini_shmem
[14:16:18] [PASSED] ttm_tt_create_basic
[14:16:18] [PASSED] ttm_tt_create_invalid_bo_type
[14:16:18] [PASSED] ttm_tt_create_ttm_exists
[14:16:18] [PASSED] ttm_tt_create_failed
[14:16:18] [PASSED] ttm_tt_destroy_basic
[14:16:18] [PASSED] ttm_tt_populate_null_ttm
[14:16:18] [PASSED] ttm_tt_populate_populated_ttm
[14:16:18] [PASSED] ttm_tt_unpopulate_basic
[14:16:18] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:16:18] [PASSED] ttm_tt_swapin_basic
[14:16:18] ===================== [PASSED] ttm_tt ======================
[14:16:18] =================== ttm_bo (14 subtests) ===================
[14:16:18] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[14:16:18] [PASSED] Cannot be interrupted and sleeps
[14:16:18] [PASSED] Cannot be interrupted, locks straight away
[14:16:18] [PASSED] Can be interrupted, sleeps
[14:16:18] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:16:18] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:16:18] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:16:18] [PASSED] ttm_bo_reserve_double_resv
[14:16:18] [PASSED] ttm_bo_reserve_interrupted
[14:16:18] [PASSED] ttm_bo_reserve_deadlock
[14:16:18] [PASSED] ttm_bo_unreserve_basic
[14:16:18] [PASSED] ttm_bo_unreserve_pinned
[14:16:18] [PASSED] ttm_bo_unreserve_bulk
[14:16:18] [PASSED] ttm_bo_put_basic
[14:16:18] [PASSED] ttm_bo_put_shared_resv
[14:16:18] [PASSED] ttm_bo_pin_basic
[14:16:18] [PASSED] ttm_bo_pin_unpin_resource
[14:16:18] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:16:18] ===================== [PASSED] ttm_bo ======================
[14:16:18] ============== ttm_bo_validate (22 subtests) ===============
[14:16:18] ============== ttm_bo_init_reserved_sys_man  ===============
[14:16:18] [PASSED] Buffer object for userspace
[14:16:18] [PASSED] Kernel buffer object
[14:16:18] [PASSED] Shared buffer object
[14:16:18] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:16:18] ============== ttm_bo_init_reserved_mock_man  ==============
[14:16:18] [PASSED] Buffer object for userspace
[14:16:18] [PASSED] Kernel buffer object
[14:16:18] [PASSED] Shared buffer object
[14:16:18] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:16:18] [PASSED] ttm_bo_init_reserved_resv
[14:16:18] ================== ttm_bo_validate_basic  ==================
[14:16:18] [PASSED] Buffer object for userspace
[14:16:18] [PASSED] Kernel buffer object
[14:16:18] [PASSED] Shared buffer object
[14:16:18] ============== [PASSED] ttm_bo_validate_basic ==============
[14:16:18] [PASSED] ttm_bo_validate_invalid_placement
[14:16:18] ============= ttm_bo_validate_same_placement  ==============
[14:16:18] [PASSED] System manager
[14:16:18] [PASSED] VRAM manager
[14:16:18] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:16:18] [PASSED] ttm_bo_validate_failed_alloc
[14:16:18] [PASSED] ttm_bo_validate_pinned
[14:16:18] [PASSED] ttm_bo_validate_busy_placement
[14:16:18] ================ ttm_bo_validate_multihop  =================
[14:16:18] [PASSED] Buffer object for userspace
[14:16:18] [PASSED] Kernel buffer object
[14:16:18] [PASSED] Shared buffer object
[14:16:18] ============ [PASSED] ttm_bo_validate_multihop =============
[14:16:18] ========== ttm_bo_validate_no_placement_signaled  ==========
[14:16:18] [PASSED] Buffer object in system domain, no page vector
[14:16:18] [PASSED] Buffer object in system domain with an existing page vector
[14:16:18] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:16:18] ======== ttm_bo_validate_no_placement_not_signaled  ========
[14:16:18] [PASSED] Buffer object for userspace
[14:16:18] [PASSED] Kernel buffer object
[14:16:18] [PASSED] Shared buffer object
[14:16:18] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:16:18] [PASSED] ttm_bo_validate_move_fence_signaled
[14:16:18] ========= ttm_bo_validate_move_fence_not_signaled  =========
[14:16:18] [PASSED] Waits for GPU
[14:16:18] [PASSED] Tries to lock straight away
[14:16:18] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:16:18] [PASSED] ttm_bo_validate_swapout
[14:16:18] [PASSED] ttm_bo_validate_happy_evict
[14:16:18] [PASSED] ttm_bo_validate_all_pinned_evict
[14:16:18] [PASSED] ttm_bo_validate_allowed_only_evict
[14:16:18] [PASSED] ttm_bo_validate_deleted_evict
[14:16:18] [PASSED] ttm_bo_validate_busy_domain_evict
[14:16:18] [PASSED] ttm_bo_validate_evict_gutting
[14:16:18] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[14:16:18] ================= [PASSED] ttm_bo_validate =================
[14:16:18] ============================================================
[14:16:18] Testing complete. Ran 102 tests: passed: 102
[14:16:18] Elapsed time: 9.962s total, 1.608s configuring, 7.686s building, 0.552s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.Build: success for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
                   ` (3 preceding siblings ...)
  2024-11-18 14:16 ` ✓ CI.KUnit: " Patchwork
@ 2024-11-18 14:34 ` Patchwork
  2024-11-18 14:34 ` ✗ CI.Hooks: failure " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:34 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : success

== Summary ==

lib/modules/6.12.0-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm-amd.ko
lib/modules/6.12.0-xe/kernel/kernel/
lib/modules/6.12.0-xe/kernel/kernel/kheaders.ko
lib/modules/6.12.0-xe/kernel/crypto/
lib/modules/6.12.0-xe/kernel/crypto/ecrdsa_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/xcbc.ko
lib/modules/6.12.0-xe/kernel/crypto/serpent_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/aria_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.12.0-xe/kernel/crypto/adiantum.ko
lib/modules/6.12.0-xe/kernel/crypto/tcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_engine.ko
lib/modules/6.12.0-xe/kernel/crypto/zstd.ko
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/pkcs7_test_key.ko
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
lib/modules/6.12.0-xe/kernel/crypto/des_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/xctr.ko
lib/modules/6.12.0-xe/kernel/crypto/authenc.ko
lib/modules/6.12.0-xe/kernel/crypto/sm4_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/keywrap.ko
lib/modules/6.12.0-xe/kernel/crypto/camellia_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/sm3.ko
lib/modules/6.12.0-xe/kernel/crypto/pcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/aegis128.ko
lib/modules/6.12.0-xe/kernel/crypto/af_alg.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_aead.ko
lib/modules/6.12.0-xe/kernel/crypto/cmac.ko
lib/modules/6.12.0-xe/kernel/crypto/sm3_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/aes_ti.ko
lib/modules/6.12.0-xe/kernel/crypto/chacha_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/poly1305_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/nhpoly1305.ko
lib/modules/6.12.0-xe/kernel/crypto/crc32_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/essiv.ko
lib/modules/6.12.0-xe/kernel/crypto/ccm.ko
lib/modules/6.12.0-xe/kernel/crypto/wp512.ko
lib/modules/6.12.0-xe/kernel/crypto/streebog_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/authencesn.ko
lib/modules/6.12.0-xe/kernel/crypto/echainiv.ko
lib/modules/6.12.0-xe/kernel/crypto/lrw.ko
lib/modules/6.12.0-xe/kernel/crypto/cryptd.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_user.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_hash.ko
lib/modules/6.12.0-xe/kernel/crypto/vmac.ko
lib/modules/6.12.0-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.12.0-xe/kernel/crypto/hctr2.ko
lib/modules/6.12.0-xe/kernel/crypto/842.ko
lib/modules/6.12.0-xe/kernel/crypto/pcbc.ko
lib/modules/6.12.0-xe/kernel/crypto/ansi_cprng.ko
lib/modules/6.12.0-xe/kernel/crypto/cast6_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/twofish_common.ko
lib/modules/6.12.0-xe/kernel/crypto/twofish_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/lz4hc.ko
lib/modules/6.12.0-xe/kernel/crypto/blowfish_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/md4.ko
lib/modules/6.12.0-xe/kernel/crypto/chacha20poly1305.ko
lib/modules/6.12.0-xe/kernel/crypto/curve25519-generic.ko
lib/modules/6.12.0-xe/kernel/crypto/lz4.ko
lib/modules/6.12.0-xe/kernel/crypto/rmd160.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_skcipher.ko
lib/modules/6.12.0-xe/kernel/crypto/cast5_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/fcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/ecdsa_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/sm4.ko
lib/modules/6.12.0-xe/kernel/crypto/cast_common.ko
lib/modules/6.12.0-xe/kernel/crypto/blowfish_common.ko
lib/modules/6.12.0-xe/kernel/crypto/michael_mic.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_rng.ko
lib/modules/6.12.0-xe/kernel/block/
lib/modules/6.12.0-xe/kernel/block/bfq.ko
lib/modules/6.12.0-xe/kernel/block/kyber-iosched.ko
lib/modules/6.12.0-xe/build
lib/modules/6.12.0-xe/modules.alias.bin
lib/modules/6.12.0-xe/modules.builtin
lib/modules/6.12.0-xe/modules.softdep
lib/modules/6.12.0-xe/modules.alias
lib/modules/6.12.0-xe/modules.order
lib/modules/6.12.0-xe/modules.symbols
lib/modules/6.12.0-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1731940443:package_x86_64_nodebug\r\e[0K'
^[[0Ksection_end:1731940443:package_x86_64_nodebug
^[[0K
+ sync
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✗ CI.Hooks: failure for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
                   ` (4 preceding siblings ...)
  2024-11-18 14:34 ` ✓ CI.Build: " Patchwork
@ 2024-11-18 14:34 ` Patchwork
  2024-11-18 14:35 ` ✗ CI.checksparse: warning " Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:34 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : failure

== Summary ==

run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
  GEN     Makefile
  UPD     include/config/kernel.release
  UPD     include/generated/utsrelease.h
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool 
  CALL    ../scripts/checksyscalls.sh
  INSTALL libsubcmd_headers
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
  LD      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
  AR      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
  CC      /workspace/kernel/build64-default/tools/objtool/weak.o
  CC      /workspace/kernel/build64-default/tools/objtool/check.o
  CC      /workspace/kernel/build64-default/tools/objtool/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/builtin-check.o
  CC      /workspace/kernel/build64-default/tools/objtool/elf.o
  CC      /workspace/kernel/build64-default/tools/objtool/objtool.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_gen.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_dump.o
  CC      /workspace/kernel/build64-default/tools/objtool/libstring.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/libctype.o
  CC      /workspace/kernel/build64-default/tools/objtool/str_error_r.o
  CC      /workspace/kernel/build64-default/tools/objtool/librbtree.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
  LD      /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
  LD      /workspace/kernel/build64-default/tools/objtool/objtool-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default W=1 drivers/gpu/drm/xe
make[1]: Entering directory '/workspace/kernel/build64-default'
make[2]: Nothing to be done for 'drivers/gpu/drm/xe'.
make[1]: Leaving directory '/workspace/kernel/build64-default'
run-parts: executing /workspace/ci/hooks/11-build-32b
+++ realpath /workspace/ci/hooks/11-build-32b
++ dirname /workspace/ci/hooks/11-build-32b
+ THIS_SCRIPT_DIR=/workspace/ci/hooks
+ SRC_DIR=/workspace/kernel
+ TOOLS_SRC_DIR=/workspace/ci
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ BUILD_DIR=/workspace/kernel/build64-default/build32
+ cd /workspace/kernel
+ mkdir -p /workspace/kernel/build64-default/build32
++ nproc
+ make -j48 ARCH=i386 O=/workspace/kernel/build64-default/build32 defconfig
make[1]: Entering directory '/workspace/kernel/build64-default/build32'
  GEN     Makefile
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/confdata.o
  HOSTCC  scripts/kconfig/expr.o
  LEX     scripts/kconfig/lexer.lex.c
  HOSTCC  scripts/kconfig/menu.o
  YACC    scripts/kconfig/parser.tab.[ch]
  HOSTCC  scripts/kconfig/preprocess.o
  HOSTCC  scripts/kconfig/symbol.o
  HOSTCC  scripts/kconfig/util.o
  HOSTCC  scripts/kconfig/lexer.lex.o
  HOSTCC  scripts/kconfig/parser.tab.o
  HOSTLD  scripts/kconfig/conf
*** Default configuration is based on 'i386_defconfig'
#
# configuration written to .config
#
make[1]: Leaving directory '/workspace/kernel/build64-default/build32'
+ cd /workspace/kernel/build64-default/build32
+ /workspace/kernel/scripts/kconfig/merge_config.sh .config /workspace/ci/kernel/10-xe.fragment
Using .config as base
Merging /workspace/ci/kernel/10-xe.fragment
The merge file '/workspace/ci/kernel/10-xe.fragment' does not exist.  Exit.
run-parts: /workspace/ci/hooks/11-build-32b exited with return code 1



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✗ CI.checksparse: warning for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
                   ` (5 preceding siblings ...)
  2024-11-18 14:34 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-11-18 14:35 ` Patchwork
  2024-11-18 14:54 ` ✓ CI.BAT: success " Patchwork
  2024-11-18 19:19 ` ✗ CI.FULL: failure " Patchwork
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:35 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : warning

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 90014f8026e31874d368834834253debd131268b
/root/linux/maintainer-tools/dim: line 2068: sparse: command not found
Sparse version: 
Fast mode used, each commit won't be checked separately.
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.BAT: success for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
                   ` (6 preceding siblings ...)
  2024-11-18 14:35 ` ✗ CI.checksparse: warning " Patchwork
@ 2024-11-18 14:54 ` Patchwork
  2024-11-18 19:19 ` ✗ CI.FULL: failure " Patchwork
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 14:54 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 4976 bytes --]

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : success

== Summary ==

CI Bug Log - changes from xe-2246-90014f8026e31874d368834834253debd131268b_BAT -> xe-pw-141496v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-141496v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_exec_basic@twice-bindexecqueue-rebind:
    - bat-adlp-vf:        [PASS][1] -> [DMESG-WARN][2] ([Intel XE#358])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
    - bat-lnl-2:          [PASS][3] -> [DMESG-FAIL][4] ([Intel XE#3466]) +32 other tests dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html

  * igt@xe_exec_threads@threads-mixed-basic:
    - bat-lnl-2:          [PASS][5] -> [DMESG-WARN][6] ([Intel XE#3466]) +3 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-lnl-2:          NOTRUN -> [DMESG-FAIL][7] ([Intel XE#3466])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate:
    - bat-adlp-vf:        [PASS][8] -> [SKIP][9] ([Intel XE#1192]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html

  
#### Possible fixes ####

  * igt@kms_addfb_basic@bad-pitch-0:
    - bat-lnl-2:          [DMESG-WARN][10] ([Intel XE#3466]) -> [PASS][11] +2 other tests pass
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-lnl-2/igt@kms_addfb_basic@bad-pitch-0.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-lnl-2/igt@kms_addfb_basic@bad-pitch-0.html

  * igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync:
    - bat-lnl-2:          [DMESG-WARN][12] -> [PASS][13] +103 other tests pass
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-lnl-2/igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-lnl-2/igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync.html

  
#### Warnings ####

  * igt@xe_exec_fault_mode@many-basic:
    - bat-lnl-1:          [INCOMPLETE][14] -> [DMESG-FAIL][15] ([Intel XE#3466])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-lnl-1/igt@xe_exec_fault_mode@many-basic.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-lnl-1/igt@xe_exec_fault_mode@many-basic.html

  * igt@xe_live_ktest@xe_bo:
    - bat-adlp-vf:        [SKIP][16] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][17] ([Intel XE#1192])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html

  
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455


Build changes
-------------

  * Linux: xe-2246-90014f8026e31874d368834834253debd131268b -> xe-pw-141496v1

  IGT_8114: 8114
  xe-2246-90014f8026e31874d368834834253debd131268b: 90014f8026e31874d368834834253debd131268b
  xe-pw-141496v1: 141496v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/index.html

[-- Attachment #2: Type: text/html, Size: 6120 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✗ CI.FULL: failure for drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
  2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
                   ` (7 preceding siblings ...)
  2024-11-18 14:54 ` ✓ CI.BAT: success " Patchwork
@ 2024-11-18 19:19 ` Patchwork
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-18 19:19 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 108693 bytes --]

== Series Details ==

Series: drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
URL   : https://patchwork.freedesktop.org/series/141496/
State : failure

== Summary ==

CI Bug Log - changes from xe-2246-90014f8026e31874d368834834253debd131268b_full -> xe-pw-141496v1_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-141496v1_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-141496v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-141496v1_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_draw_crc@draw-method-mmap-wc@xrgb2101010-4tiled:
    - shard-bmg:          [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@xrgb2101010-4tiled.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-7/igt@kms_draw_crc@draw-method-mmap-wc@xrgb2101010-4tiled.html

  * igt@kms_flip@basic-flip-vs-modeset@a-hdmi-a6:
    - shard-dg2-set2:     [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-433/igt@kms_flip@basic-flip-vs-modeset@a-hdmi-a6.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-464/igt@kms_flip@basic-flip-vs-modeset@a-hdmi-a6.html

  * igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01:
    - shard-bmg:          [PASS][5] -> [DMESG-WARN][6] +3 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-8/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-8/igt@xe_ccs@ctrl-surf-copy-new-ctx@tile64-compressed-compfmt0-vram01-vram01.html

  * igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][7]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate-race.html

  
#### Warnings ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][8] ([Intel XE#3442]) -> [SKIP][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
    - shard-bmg:          [DMESG-WARN][10] -> [DMESG-FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-7/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [DMESG-WARN][12] -> [INCOMPLETE][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-4/igt@xe_module_load@many-reload.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-2/igt@xe_module_load@many-reload.html

  * igt@xe_vm@shared-pde2-page:
    - shard-dg2-set2:     [SKIP][14] ([Intel XE#1130]) -> [DMESG-WARN][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_vm@shared-pde2-page.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_vm@shared-pde2-page.html

  
Known issues
------------

  Here are the changes found in xe-pw-141496v1_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotunbind-rebind:
    - shard-dg2-set2:     [PASS][16] -> [SKIP][17] ([Intel XE#1885])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html

  * igt@kms_async_flips@invalid-async-flip@pipe-c-hdmi-a-1:
    - shard-adlp:         [PASS][18] -> [DMESG-WARN][19] ([Intel XE#1033])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-3/igt@kms_async_flips@invalid-async-flip@pipe-c-hdmi-a-1.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-1/igt@kms_async_flips@invalid-async-flip@pipe-c-hdmi-a-1.html

  * igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][20] ([Intel XE#3468]) +24 other tests dmesg-warn
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [PASS][21] -> [SKIP][22] ([Intel XE#2136]) +12 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][23] ([Intel XE#3468]) +8 other tests dmesg-fail
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2327])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-90.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#316])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         [PASS][26] -> [DMESG-WARN][27] ([Intel XE#3086]) +3 other tests dmesg-warn
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#1124]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#1124]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#367])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2887]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#787]) +104 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#2887])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#2907])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#3432])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#787]) +5 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1195] / [Intel XE#1727])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][42] -> [DMESG-WARN][43] ([Intel XE#3113])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [PASS][44] -> [INCOMPLETE][45] ([Intel XE#1195])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#1152]) +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2325])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2252])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_color@ctm-red-to-blue:
    - shard-lnl:          [PASS][50] -> [DMESG-WARN][51] ([Intel XE#2929]) +1 other test dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-7/igt@kms_color@ctm-red-to-blue.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-3/igt@kms_color@ctm-red-to-blue.html

  * igt@kms_content_protection@uevent:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3278])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2321])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-adlp:         NOTRUN -> [SKIP][54] ([Intel XE#308])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#2321])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#309])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#309])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
    - shard-bmg:          [PASS][58] -> [FAIL][59] ([Intel XE#3486]) +1 other test fail
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
    - shard-bmg:          [PASS][60] -> [FAIL][61] ([Intel XE#3321] / [Intel XE#3486])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][62] -> [INCOMPLETE][63] ([Intel XE#2597]) +1 other test incomplete
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][64] ([Intel XE#1195]) +2 other tests incomplete
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#2423] / [i915#2575]) +30 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_flip@flip-vs-absolute-wf_vblank.html
    - shard-lnl:          [PASS][66] -> [FAIL][67] ([Intel XE#886]) +2 other tests fail
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@plain-flip-fb-recreate@c-edp1:
    - shard-lnl:          [PASS][68] -> [FAIL][69] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html

  * igt@kms_flip@plain-flip-ts-check@a-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][70] ([Intel XE#3477])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_flip@plain-flip-ts-check@a-hdmi-a6.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
    - shard-dg2-set2:     [PASS][71] -> [SKIP][72] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#455]) +4 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2293] / [Intel XE#2380])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2293])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#651]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#2311]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][78] ([Intel XE#651])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#651])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#653]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#2313]) +7 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#2136]) +39 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_lease@lease-invalid-crtc:
    - shard-dg2-set2:     [PASS][83] -> [SKIP][84] ([Intel XE#2423] / [i915#2575]) +60 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_lease@lease-invalid-crtc.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_lease@lease-invalid-crtc.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][85] ([Intel XE#361])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-bmg:          [PASS][86] -> [DMESG-WARN][87] ([Intel XE#2566])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2392])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#1129])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#2446]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-dg2-set2:     [PASS][91] -> [SKIP][92] ([Intel XE#2446])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-adlp:         NOTRUN -> [SKIP][93] ([Intel XE#1489])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][94] ([Intel XE#1489])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#2893])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#1489])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-cursor-plane-onoff:
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#2850] / [Intel XE#929])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#1406])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_psr@fbc-pr-cursor-plane-onoff.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2234] / [Intel XE#2850])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_psr@psr-sprite-plane-move.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#2850] / [Intel XE#929])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#2413])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         [PASS][102] -> [DMESG-WARN][103] ([Intel XE#2953] / [Intel XE#3086]) +2 other tests dmesg-warn
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-3/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@max-min:
    - shard-lnl:          [PASS][104] -> [FAIL][105] ([Intel XE#1522]) +1 other test fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-8/igt@kms_vrr@max-min.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-8/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#455]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#1499])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [SKIP][108] ([Intel XE#1280] / [Intel XE#455])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][109] ([Intel XE#1126])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#2905]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][111] ([Intel XE#2905]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-adlp:         NOTRUN -> [SKIP][112] ([Intel XE#261] / [Intel XE#688])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@xe_evict@evict-beng-cm-threads-large.html
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#688])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-bmg:          [PASS][114] -> [INCOMPLETE][115] ([Intel XE#1473])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-8/igt@xe_evict@evict-beng-mixed-threads-large.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-8/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue:
    - shard-lnl:          [PASS][116] -> [FAIL][117] ([Intel XE#3497])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-7/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-3/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-adlp:         NOTRUN -> [SKIP][118] ([Intel XE#1392]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#1392]) +1 other test skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html

  * igt@xe_exec_basic@no-exec-basic-defer-bind:
    - shard-dg2-set2:     [PASS][120] -> [SKIP][121] ([Intel XE#1130]) +102 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@xe_exec_basic@no-exec-basic-defer-bind.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_exec_basic@no-exec-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-userptr-invalidate-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][122] ([Intel XE#288])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@xe_exec_fault_mode@many-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
    - shard-bmg:          [PASS][123] -> [DMESG-WARN][124] ([Intel XE#3468]) +6 other tests dmesg-warn
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-2/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-4/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][125] ([Intel XE#288]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
    - shard-lnl:          [PASS][126] -> [DMESG-FAIL][127] ([Intel XE#3371])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][128] ([Intel XE#3467])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_oa@disabled-read-error:
    - shard-dg2-set2:     NOTRUN -> [SKIP][129] ([Intel XE#2541]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@xe_oa@disabled-read-error.html
    - shard-adlp:         NOTRUN -> [SKIP][130] ([Intel XE#2541])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@xe_oa@disabled-read-error.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#2248])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pat@prime-self-import-coh:
    - shard-dg2-set2:     NOTRUN -> [SKIP][132] ([Intel XE#1130]) +53 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_pat@prime-self-import-coh.html

  * igt@xe_pm@s4-basic:
    - shard-adlp:         [PASS][133] -> [ABORT][134] ([Intel XE#1358] / [Intel XE#1607])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-8/igt@xe_pm@s4-basic.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-9/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-exec-after:
    - shard-lnl:          [PASS][135] -> [ABORT][136] ([Intel XE#1358] / [Intel XE#1607])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-3/igt@xe_pm@s4-exec-after.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-2/igt@xe_pm@s4-exec-after.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][137] -> [FAIL][138] ([Intel XE#958])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-adlp:         [PASS][139] -> [FAIL][140] ([Intel XE#3507])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-4/igt@xe_sriov_flr@flr-vf1-clear.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-1/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@core_getclient:
    - shard-dg2-set2:     [SKIP][141] ([Intel XE#2423]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@core_getclient.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@core_getclient.html

  * igt@core_getversion@basic:
    - shard-dg2-set2:     [FAIL][143] ([Intel XE#3440]) -> [PASS][144]
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@core_getversion@basic.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@core_getversion@basic.html

  * igt@core_hotunplug@hotrebind:
    - shard-adlp:         [DMESG-WARN][145] ([Intel XE#3086]) -> [PASS][146] +2 other tests pass
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-1/igt@core_hotunplug@hotrebind.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-3/igt@core_hotunplug@hotrebind.html

  * igt@core_setmaster@master-drop-set-root:
    - shard-dg2-set2:     [FAIL][147] ([Intel XE#3130] / [Intel XE#3249]) -> [PASS][148]
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html

  * igt@fbdev@write:
    - shard-dg2-set2:     [SKIP][149] ([Intel XE#2134]) -> [PASS][150]
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@fbdev@write.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@fbdev@write.html

  * igt@kms_addfb_basic@bad-pitch-32:
    - shard-lnl:          [DMESG-WARN][151] -> [PASS][152] +3 other tests pass
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-3/igt@kms_addfb_basic@bad-pitch-32.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-2/igt@kms_addfb_basic@bad-pitch-32.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [FAIL][153] ([Intel XE#1426]) -> [PASS][154] +1 other test pass
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [DMESG-FAIL][155] ([Intel XE#1033]) -> [PASS][156]
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [DMESG-WARN][157] ([Intel XE#1033]) -> [PASS][158] +1 other test pass
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
    - shard-bmg:          [INCOMPLETE][159] -> [PASS][160] +3 other tests pass
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html

  * igt@kms_cursor_edge_walk@128x128-top-edge:
    - shard-lnl:          [FAIL][161] ([Intel XE#2577]) -> [PASS][162] +1 other test pass
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-2/igt@kms_cursor_edge_walk@128x128-top-edge.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-top-edge.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [SKIP][163] ([Intel XE#2423] / [i915#2575]) -> [PASS][164] +66 other tests pass
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@torture-move@pipe-a:
    - shard-dg2-set2:     [DMESG-WARN][165] ([Intel XE#3184]) -> [PASS][166] +1 other test pass
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-435/igt@kms_cursor_legacy@torture-move@pipe-a.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_cursor_legacy@torture-move@pipe-a.html

  * igt@kms_flip@2x-absolute-wf_vblank@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     [INCOMPLETE][167] ([Intel XE#1195]) -> [PASS][168] +1 other test pass
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_flip@2x-absolute-wf_vblank@bd-hdmi-a6-dp4.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_flip@2x-absolute-wf_vblank@bd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][169] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-bmg:          [FAIL][171] ([Intel XE#2882]) -> [PASS][172] +1 other test pass
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-4/igt@kms_flip@plain-flip-ts-check.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-2/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_flip@plain-flip-ts-check@a-edp1:
    - shard-lnl:          [FAIL][173] ([Intel XE#886]) -> [PASS][174] +3 other tests pass
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-2/igt@kms_flip@plain-flip-ts-check@a-edp1.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-5/igt@kms_flip@plain-flip-ts-check@a-edp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-dg2-set2:     [SKIP][175] ([Intel XE#2136]) -> [PASS][176] +18 other tests pass
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][177] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][178] +8 other tests pass
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [DMESG-WARN][179] ([Intel XE#3468]) -> [PASS][180] +4 other tests pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-1/igt@kms_hdr@static-swap.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-7/igt@kms_hdr@static-swap.html

  * igt@kms_pm_rpm@basic-rte:
    - shard-dg2-set2:     [SKIP][181] ([Intel XE#2446]) -> [PASS][182] +1 other test pass
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_pm_rpm@basic-rte.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_pm_rpm@basic-rte.html

  * igt@kms_vblank@query-idle:
    - shard-adlp:         [DMESG-WARN][183] ([Intel XE#2953] / [Intel XE#3086]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-8/igt@kms_vblank@query-idle.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@kms_vblank@query-idle.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][185] ([Intel XE#2159]) -> [PASS][186] +1 other test pass
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [TIMEOUT][187] ([Intel XE#1473]) -> [PASS][188] +1 other test pass
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_balancer@twice-virtual-basic:
    - shard-dg2-set2:     [SKIP][189] ([Intel XE#1130]) -> [PASS][190] +121 other tests pass
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_exec_balancer@twice-virtual-basic.html

  * igt@xe_exec_compute_mode@many-execqueues-rebind:
    - shard-lnl:          [FAIL][191] ([Intel XE#3319]) -> [PASS][192]
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-6/igt@xe_exec_compute_mode@many-execqueues-rebind.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-1/igt@xe_exec_compute_mode@many-execqueues-rebind.html

  * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
    - shard-dg2-set2:     [DMESG-WARN][193] -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-435/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
    - shard-adlp:         [DMESG-WARN][195] -> [PASS][196]
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
    - shard-bmg:          [DMESG-FAIL][197] ([Intel XE#3371]) -> [PASS][198]
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html

  * igt@xe_oa@syncs-syncobj-wait@rcs-0:
    - shard-bmg:          [DMESG-WARN][199] -> [PASS][200] +5 other tests pass
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-1/igt@xe_oa@syncs-syncobj-wait@rcs-0.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-8/igt@xe_oa@syncs-syncobj-wait@rcs-0.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-adlp:         [ABORT][201] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][202]
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@xe_pm@s4-multiple-execs.html
    - shard-lnl:          [ABORT][203] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@xe_pm@s4-multiple-execs.html

  * igt@xe_prime_self_import@export-vs-gem_close-race:
    - shard-lnl:          [DMESG-WARN][205] ([Intel XE#3466]) -> [PASS][206]
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-3/igt@xe_prime_self_import@export-vs-gem_close-race.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-2/igt@xe_prime_self_import@export-vs-gem_close-race.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-adlp:         [DMESG-WARN][207] ([Intel XE#3086] / [Intel XE#358]) -> [PASS][208]
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-8/igt@xe_wedged@wedged-mode-toggle.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-2/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-dg2-set2:     [DMESG-WARN][209] ([Intel XE#3468]) -> [SKIP][210] ([Intel XE#1885])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html

  * igt@core_hotunplug@unbind-rebind:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#1885]) -> [DMESG-WARN][212] ([Intel XE#3468])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][213] ([Intel XE#873]) -> [SKIP][214] ([Intel XE#2423] / [i915#2575])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_async_flips@test-cursor:
    - shard-dg2-set2:     [SKIP][215] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][216] ([Intel XE#1195]) +1 other test incomplete
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_async_flips@test-cursor.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_async_flips@test-cursor.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [INCOMPLETE][217] ([Intel XE#1195] / [Intel XE#402]) -> [SKIP][218] ([Intel XE#2136] / [Intel XE#2351])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][219] ([Intel XE#316]) -> [SKIP][220] ([Intel XE#2136]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][221] ([Intel XE#2136]) -> [SKIP][222] ([Intel XE#316])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-90.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-bmg:          [DMESG-FAIL][223] ([Intel XE#3468]) -> [DMESG-WARN][224] ([Intel XE#3468]) +4 other tests dmesg-warn
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][225] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][226] ([Intel XE#316])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-adlp:         [FAIL][227] ([Intel XE#1874]) -> [DMESG-FAIL][228] ([Intel XE#1033])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][229] ([Intel XE#1124]) -> [SKIP][230] ([Intel XE#2136]) +2 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][231] ([Intel XE#1124]) -> [SKIP][232] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][234] ([Intel XE#607])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][235] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][236] ([Intel XE#619])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][237] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][238] ([Intel XE#1124]) +2 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][239] ([Intel XE#2136]) -> [SKIP][240] ([Intel XE#1124]) +5 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#2191]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][243] ([Intel XE#2423] / [i915#2575]) -> [SKIP][244] ([Intel XE#2191]) +1 other test skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][245] ([Intel XE#367]) -> [SKIP][246] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][247] ([Intel XE#2423] / [i915#2575]) -> [SKIP][248] ([Intel XE#367]) +2 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][249] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][250] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][251] ([Intel XE#2136]) -> [SKIP][252] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][253] -> [SKIP][254] ([Intel XE#455] / [Intel XE#787])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#2907])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][257] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][258] ([Intel XE#2136]) +7 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-dg2-set2:     [SKIP][259] ([Intel XE#306]) -> [SKIP][260] ([Intel XE#2423] / [i915#2575])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2-set2:     [SKIP][261] ([Intel XE#2423] / [i915#2575]) -> [SKIP][262] ([Intel XE#306])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_chamelium_color@degamma.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][263] ([Intel XE#2423] / [i915#2575]) -> [SKIP][264] ([Intel XE#373]) +8 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     [SKIP][265] ([Intel XE#373]) -> [SKIP][266] ([Intel XE#2423] / [i915#2575]) +5 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#2423] / [i915#2575]) -> [SKIP][268] ([Intel XE#307])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-dg2-set2:     [SKIP][269] ([Intel XE#455]) -> [SKIP][270] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2-set2:     [SKIP][271] ([Intel XE#308]) -> [SKIP][272] ([Intel XE#2423] / [i915#2575])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][273] ([Intel XE#2423] / [i915#2575]) -> [SKIP][274] ([Intel XE#308])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [SKIP][275] ([Intel XE#2423] / [i915#2575]) -> [SKIP][276] ([Intel XE#323])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2-set2:     [SKIP][277] ([Intel XE#455]) -> [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#307]) -> [SKIP][280] ([Intel XE#2423] / [i915#2575])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2-set2:     [SKIP][281] ([Intel XE#455]) -> [SKIP][282] ([Intel XE#2136]) +3 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][284] ([Intel XE#455]) +2 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-dg2-set2:     [SKIP][285] ([Intel XE#2136]) -> [INCOMPLETE][286] ([Intel XE#1195])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_fbcon_fbt@fbc-suspend.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2-set2:     [FAIL][287] ([Intel XE#301]) -> [SKIP][288] ([Intel XE#2423] / [i915#2575])
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [DMESG-FAIL][289] ([Intel XE#3466]) -> [DMESG-WARN][290] ([Intel XE#3466]) +1 other test dmesg-warn
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [SKIP][291] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][292] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#2423] / [i915#2575]) -> [FAIL][294] ([Intel XE#886])
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_flip@plain-flip-ts-check.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-dg2-set2:     [INCOMPLETE][295] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2351])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg2-set2:     [DMESG-WARN][297] -> [SKIP][298] ([Intel XE#2136] / [Intel XE#2351])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     [SKIP][299] ([Intel XE#2136]) -> [SKIP][300] ([Intel XE#455]) +3 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#651]) -> [SKIP][302] ([Intel XE#2136]) +8 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][303] ([Intel XE#651]) -> [SKIP][304] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [INCOMPLETE][305] ([Intel XE#1195]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2351])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-dg2-set2:     [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#651]) +18 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][310] ([Intel XE#651]) +7 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#653]) -> [SKIP][312] ([Intel XE#2136]) +14 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#653]) +5 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#653]) +19 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
    - shard-dg2-set2:     [SKIP][317] ([Intel XE#653]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#455]) +5 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     [SKIP][321] ([Intel XE#346]) -> [SKIP][322] ([Intel XE#2136])
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#2925])
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#356])
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-dg2-set2:     [INCOMPLETE][327] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575])
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2-set2:     [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [FAIL][330] ([Intel XE#361])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575])
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][333] ([Intel XE#2136]) -> [SKIP][334] ([Intel XE#2938])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     [SKIP][335] ([Intel XE#870]) -> [SKIP][336] ([Intel XE#2136])
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_pm_backlight@fade.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-dg2-set2:     [SKIP][337] ([Intel XE#2446]) -> [DMESG-FAIL][338] ([Intel XE#3468])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_pm_rpm@drm-resources-equal.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#2446]) -> [DMESG-WARN][340] ([Intel XE#3468])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2-set2:     [DMESG-WARN][341] ([Intel XE#3468]) -> [SKIP][342] ([Intel XE#2446])
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#1489]) +6 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][345] ([Intel XE#1489]) -> [SKIP][346] ([Intel XE#2136]) +7 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#1122]) -> [SKIP][348] ([Intel XE#2136])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-dg2-set2:     [SKIP][349] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][350] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-render.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@kms_psr@fbc-psr-no-drrs.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_psr@fbc-psr-no-drrs.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     [SKIP][353] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][354] ([Intel XE#2136]) +5 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-sprite-blt:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_psr@pr-sprite-blt.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#2351]) -> [SKIP][358] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     [SKIP][359] ([Intel XE#3414]) -> [SKIP][360] ([Intel XE#2423] / [i915#2575])
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#2423] / [i915#2575]) -> [SKIP][362] ([Intel XE#3414])
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][363] ([Intel XE#1729]) -> [SKIP][364] ([Intel XE#362])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][365] ([Intel XE#2509]) -> [SKIP][366] ([Intel XE#2426])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-dg2-set2:     [SKIP][367] ([Intel XE#362]) -> [SKIP][368] ([Intel XE#1500])
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][369] ([Intel XE#330]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575])
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-dg2-set2:     [DMESG-WARN][371] ([Intel XE#3468]) -> [SKIP][372] ([Intel XE#2423] / [i915#2575])
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_vblank@ts-continuation-suspend.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][373] ([Intel XE#2168]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575])
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@kms_vrr@lobf.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@kms_vrr@lobf.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg2-set2:     [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#756]) +1 other test skip
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][377] ([Intel XE#1130]) -> [SKIP][378] ([Intel XE#1280] / [Intel XE#455])
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][379] ([Intel XE#1123]) -> [SKIP][380] ([Intel XE#1130]) +1 other test skip
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     [SKIP][381] ([Intel XE#1130]) -> [SKIP][382] ([Intel XE#2905]) +9 other tests skip
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_eudebug@basic-close.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-dg2-set2:     [SKIP][383] ([Intel XE#2905]) -> [SKIP][384] ([Intel XE#1130]) +7 other tests skip
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [SKIP][385] ([Intel XE#1130]) -> [INCOMPLETE][386] ([Intel XE#1195] / [Intel XE#1473])
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     [SKIP][387] ([Intel XE#1130]) -> [SKIP][388] ([Intel XE#288]) +21 other tests skip
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][389] ([Intel XE#288]) -> [SKIP][390] ([Intel XE#1130]) +18 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][391] ([Intel XE#3371]) -> [DMESG-FAIL][392] ([Intel XE#3371])
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-bmg-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
    - shard-dg2-set2:     [SKIP][393] ([Intel XE#1130]) -> [DMESG-WARN][394] ([Intel XE#3343])
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
    - shard-dg2-set2:     [SKIP][395] ([Intel XE#1130]) -> [DMESG-WARN][396] ([Intel XE#3467])
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
    - shard-adlp:         [DMESG-WARN][397] ([Intel XE#3343]) -> [DMESG-WARN][398] ([Intel XE#3086] / [Intel XE#3343])
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-adlp-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-adlp-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
    - shard-dg2-set2:     [DMESG-WARN][399] ([Intel XE#3343]) -> [SKIP][400] ([Intel XE#1130])
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html

  * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
    - shard-dg2-set2:     [DMESG-WARN][401] ([Intel XE#3467]) -> [SKIP][402] ([Intel XE#1130]) +2 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][403] ([Intel XE#1130]) -> [SKIP][404] ([Intel XE#512])
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_mmap@small-bar.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_mmap@small-bar.html

  * igt@xe_oa@non-privileged-map-oa-buffer:
    - shard-dg2-set2:     [SKIP][405] ([Intel XE#1130]) -> [SKIP][406] ([Intel XE#2541]) +5 other tests skip
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_oa@non-privileged-map-oa-buffer.html

  * igt@xe_oa@syncs-syncobj-cfg:
    - shard-dg2-set2:     [SKIP][407] ([Intel XE#2541]) -> [SKIP][408] ([Intel XE#1130]) +6 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@xe_oa@syncs-syncobj-cfg.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_oa@syncs-syncobj-cfg.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     [SKIP][409] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][410] ([Intel XE#1130]) +1 other test skip
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-dg2-set2:     [SKIP][411] ([Intel XE#1130]) -> [DMESG-WARN][412] ([Intel XE#3468])
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_pm@d3hot-mmap-vram.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     [SKIP][413] ([Intel XE#1130]) -> [DMESG-WARN][414] ([Intel XE#569])
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][415] ([Intel XE#1130]) -> [SKIP][416] ([Intel XE#2284] / [Intel XE#366])
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][417] ([Intel XE#579]) -> [SKIP][418] ([Intel XE#1130])
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     [SKIP][419] ([Intel XE#944]) -> [SKIP][420] ([Intel XE#1130]) +1 other test skip
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-dg2-set2:     [SKIP][421] ([Intel XE#1130]) -> [SKIP][422] ([Intel XE#944]) +2 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_waitfence@engine:
    - shard-dg2-set2:     [DMESG-WARN][423] -> [SKIP][424] ([Intel XE#1130])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-464/igt@xe_waitfence@engine.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_waitfence@engine.html

  * igt@xe_wedged@basic-wedged:
    - shard-dg2-set2:     [SKIP][425] ([Intel XE#1130]) -> [DMESG-WARN][426] ([Intel XE#2919])
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-466/igt@xe_wedged@basic-wedged.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-433/igt@xe_wedged@basic-wedged.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-dg2-set2:     [ABORT][427] ([Intel XE#3421]) -> [SKIP][428] ([Intel XE#1130])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2246-90014f8026e31874d368834834253debd131268b/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
  [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
  [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [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#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#3086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3086
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3319
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#3477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3477
  [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
  [Intel XE#3497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3497
  [Intel XE#3507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3507
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


Build changes
-------------

  * Linux: xe-2246-90014f8026e31874d368834834253debd131268b -> xe-pw-141496v1

  IGT_8114: 8114
  xe-2246-90014f8026e31874d368834834253debd131268b: 90014f8026e31874d368834834253debd131268b
  xe-pw-141496v1: 141496v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-141496v1/index.html

[-- Attachment #2: Type: text/html, Size: 136286 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-11-18 19:19 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-18 13:10 [CI] drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector() Imre Deak
2024-11-18 13:16 ` Jani Nikula
2024-11-18 14:14 ` ✓ CI.Patch_applied: success for " Patchwork
2024-11-18 14:15 ` ✓ CI.checkpatch: " Patchwork
2024-11-18 14:16 ` ✓ CI.KUnit: " Patchwork
2024-11-18 14:34 ` ✓ CI.Build: " Patchwork
2024-11-18 14:34 ` ✗ CI.Hooks: failure " Patchwork
2024-11-18 14:35 ` ✗ CI.checksparse: warning " Patchwork
2024-11-18 14:54 ` ✓ CI.BAT: success " Patchwork
2024-11-18 19:19 ` ✗ CI.FULL: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox