Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "drm/xe: make gt_remove use devm"
@ 2024-05-28 18:23 Daniele Ceraolo Spurio
  2024-05-28 18:27 ` Daniele Ceraolo Spurio
                   ` (11 more replies)
  0 siblings, 12 replies; 15+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-05-28 18:23 UTC (permalink / raw)
  To: intel-xe
  Cc: Daniele Ceraolo Spurio, Matthew Auld, Andrzej Hajda, Rodrigo Vivi

The gt_remove function was explictly added as part of the remove flow
instead of using drmm/devm automatic cleanup due to it being illegal
to remove a component after the driver has been detached from the pci
device; the GSC proxy component is removed as part of gt_remove, so we
need to do it in the pci cleanup flow. The function already has a
comment above it to explain this.

Note that the change to use the devm also caused an invalid pointer
deref in the gsc_proxy unbind function, but I didn't bother to debug
which pointer was bad since we shouldn't be calling the unbind that
late anyway and this revert fixes it.

Both issue were not seen in CI because the GSC loading is temporarily
disabled due to a critical bug, which means we're not binding the
component.

Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 drivers/gpu/drm/xe/xe_device.c | 22 ++++++++++++++++++++--
 drivers/gpu/drm/xe/xe_gt.c     | 16 +++++++++-------
 drivers/gpu/drm/xe/xe_gt.h     |  1 +
 3 files changed, 30 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 85c1b0c406a6..4c44f23e58ea 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -549,6 +549,7 @@ int xe_device_probe(struct xe_device *xe)
 	struct xe_tile *tile;
 	struct xe_gt *gt;
 	int err;
+	u8 last_gt;
 	u8 id;
 
 	xe_pat_init_early(xe);
@@ -647,16 +648,18 @@ int xe_device_probe(struct xe_device *xe)
 		goto err_irq_shutdown;
 
 	for_each_gt(gt, xe, id) {
+		last_gt = id;
+
 		err = xe_gt_init(gt);
 		if (err)
-			goto err_irq_shutdown;
+			goto err_fini_gt;
 	}
 
 	xe_heci_gsc_init(xe);
 
 	err = xe_display_init(xe);
 	if (err)
-		goto err_irq_shutdown;
+		goto err_fini_gt;
 
 	err = drm_dev_register(&xe->drm, 0);
 	if (err)
@@ -672,6 +675,15 @@ int xe_device_probe(struct xe_device *xe)
 
 err_fini_display:
 	xe_display_driver_remove(xe);
+
+err_fini_gt:
+	for_each_gt(gt, xe, id) {
+		if (id < last_gt)
+			xe_gt_remove(gt);
+		else
+			break;
+	}
+
 err_irq_shutdown:
 	xe_irq_shutdown(xe);
 err:
@@ -689,12 +701,18 @@ static void xe_device_remove_display(struct xe_device *xe)
 
 void xe_device_remove(struct xe_device *xe)
 {
+	struct xe_gt *gt;
+	u8 id;
+
 	xe_device_remove_display(xe);
 
 	xe_display_fini(xe);
 
 	xe_heci_gsc_fini(xe);
 
+	for_each_gt(gt, xe, id)
+		xe_gt_remove(gt);
+
 	xe_irq_shutdown(xe);
 }
 
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 6f4b59a6e710..98c2228b51d0 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -93,14 +93,16 @@ void xe_gt_sanitize(struct xe_gt *gt)
 	gt->uc.guc.submission_state.enabled = false;
 }
 
-/*
- * Clean up the GT structures before driver removal. This function should only
- * act on objects/structures that must be cleaned before the driver removal
- * callback is complete and therefore can't be deferred to a drmm action.
+/**
+ * xe_gt_remove() - Clean up the GT structures before driver removal
+ * @gt: the GT object
+ *
+ * This function should only act on objects/structures that must be cleaned
+ * before the driver removal callback is complete and therefore can't be
+ * deferred to a drmm action.
  */
-static void gt_remove(void *arg)
+void xe_gt_remove(struct xe_gt *gt)
 {
-	struct xe_gt *gt = arg;
 	int i;
 
 	xe_uc_remove(&gt->uc);
@@ -566,7 +568,7 @@ int xe_gt_init(struct xe_gt *gt)
 
 	xe_gt_record_user_engines(gt);
 
-	return devm_add_action_or_reset(gt_to_xe(gt)->drm.dev, gt_remove, gt);
+	return 0;
 }
 
 void xe_gt_record_user_engines(struct xe_gt *gt)
diff --git a/drivers/gpu/drm/xe/xe_gt.h b/drivers/gpu/drm/xe/xe_gt.h
index d0747edfe020..9073ac68a777 100644
--- a/drivers/gpu/drm/xe/xe_gt.h
+++ b/drivers/gpu/drm/xe/xe_gt.h
@@ -56,6 +56,7 @@ int xe_gt_suspend(struct xe_gt *gt);
 int xe_gt_resume(struct xe_gt *gt);
 void xe_gt_reset_async(struct xe_gt *gt);
 void xe_gt_sanitize(struct xe_gt *gt);
+void xe_gt_remove(struct xe_gt *gt);
 
 /**
  * xe_gt_any_hw_engine_by_reset_domain - scan the list of engines and return the
-- 
2.43.0


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

* Re: [PATCH] Revert "drm/xe: make gt_remove use devm"
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
@ 2024-05-28 18:27 ` Daniele Ceraolo Spurio
  2024-05-29  8:26   ` Matthew Auld
  2024-05-28 18:29 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (10 subsequent siblings)
  11 siblings, 1 reply; 15+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-05-28 18:27 UTC (permalink / raw)
  To: intel-xe; +Cc: Matthew Auld, Andrzej Hajda, Rodrigo Vivi



On 5/28/2024 11:23 AM, Daniele Ceraolo Spurio wrote:
> The gt_remove function was explictly added as part of the remove flow
> instead of using drmm/devm automatic cleanup due to it being illegal
> to remove a component after the driver has been detached from the pci
> device; the GSC proxy component is removed as part of gt_remove, so we
> need to do it in the pci cleanup flow. The function already has a
> comment above it to explain this.
>
> Note that the change to use the devm also caused an invalid pointer
> deref in the gsc_proxy unbind function, but I didn't bother to debug
> which pointer was bad since we shouldn't be calling the unbind that
> late anyway and this revert fixes it.

Here is the bad pointer deref log in case anyone wants to have a better 
look:

https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-8/igt@xe_module_load@reload.html

Daniele

>
> Both issue were not seen in CI because the GSC loading is temporarily
> disabled due to a critical bug, which means we're not binding the
> component.
>
> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Andrzej Hajda <andrzej.hajda@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_device.c | 22 ++++++++++++++++++++--
>   drivers/gpu/drm/xe/xe_gt.c     | 16 +++++++++-------
>   drivers/gpu/drm/xe/xe_gt.h     |  1 +
>   3 files changed, 30 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 85c1b0c406a6..4c44f23e58ea 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -549,6 +549,7 @@ int xe_device_probe(struct xe_device *xe)
>   	struct xe_tile *tile;
>   	struct xe_gt *gt;
>   	int err;
> +	u8 last_gt;
>   	u8 id;
>   
>   	xe_pat_init_early(xe);
> @@ -647,16 +648,18 @@ int xe_device_probe(struct xe_device *xe)
>   		goto err_irq_shutdown;
>   
>   	for_each_gt(gt, xe, id) {
> +		last_gt = id;
> +
>   		err = xe_gt_init(gt);
>   		if (err)
> -			goto err_irq_shutdown;
> +			goto err_fini_gt;
>   	}
>   
>   	xe_heci_gsc_init(xe);
>   
>   	err = xe_display_init(xe);
>   	if (err)
> -		goto err_irq_shutdown;
> +		goto err_fini_gt;
>   
>   	err = drm_dev_register(&xe->drm, 0);
>   	if (err)
> @@ -672,6 +675,15 @@ int xe_device_probe(struct xe_device *xe)
>   
>   err_fini_display:
>   	xe_display_driver_remove(xe);
> +
> +err_fini_gt:
> +	for_each_gt(gt, xe, id) {
> +		if (id < last_gt)
> +			xe_gt_remove(gt);
> +		else
> +			break;
> +	}
> +
>   err_irq_shutdown:
>   	xe_irq_shutdown(xe);
>   err:
> @@ -689,12 +701,18 @@ static void xe_device_remove_display(struct xe_device *xe)
>   
>   void xe_device_remove(struct xe_device *xe)
>   {
> +	struct xe_gt *gt;
> +	u8 id;
> +
>   	xe_device_remove_display(xe);
>   
>   	xe_display_fini(xe);
>   
>   	xe_heci_gsc_fini(xe);
>   
> +	for_each_gt(gt, xe, id)
> +		xe_gt_remove(gt);
> +
>   	xe_irq_shutdown(xe);
>   }
>   
> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
> index 6f4b59a6e710..98c2228b51d0 100644
> --- a/drivers/gpu/drm/xe/xe_gt.c
> +++ b/drivers/gpu/drm/xe/xe_gt.c
> @@ -93,14 +93,16 @@ void xe_gt_sanitize(struct xe_gt *gt)
>   	gt->uc.guc.submission_state.enabled = false;
>   }
>   
> -/*
> - * Clean up the GT structures before driver removal. This function should only
> - * act on objects/structures that must be cleaned before the driver removal
> - * callback is complete and therefore can't be deferred to a drmm action.
> +/**
> + * xe_gt_remove() - Clean up the GT structures before driver removal
> + * @gt: the GT object
> + *
> + * This function should only act on objects/structures that must be cleaned
> + * before the driver removal callback is complete and therefore can't be
> + * deferred to a drmm action.
>    */
> -static void gt_remove(void *arg)
> +void xe_gt_remove(struct xe_gt *gt)
>   {
> -	struct xe_gt *gt = arg;
>   	int i;
>   
>   	xe_uc_remove(&gt->uc);
> @@ -566,7 +568,7 @@ int xe_gt_init(struct xe_gt *gt)
>   
>   	xe_gt_record_user_engines(gt);
>   
> -	return devm_add_action_or_reset(gt_to_xe(gt)->drm.dev, gt_remove, gt);
> +	return 0;
>   }
>   
>   void xe_gt_record_user_engines(struct xe_gt *gt)
> diff --git a/drivers/gpu/drm/xe/xe_gt.h b/drivers/gpu/drm/xe/xe_gt.h
> index d0747edfe020..9073ac68a777 100644
> --- a/drivers/gpu/drm/xe/xe_gt.h
> +++ b/drivers/gpu/drm/xe/xe_gt.h
> @@ -56,6 +56,7 @@ int xe_gt_suspend(struct xe_gt *gt);
>   int xe_gt_resume(struct xe_gt *gt);
>   void xe_gt_reset_async(struct xe_gt *gt);
>   void xe_gt_sanitize(struct xe_gt *gt);
> +void xe_gt_remove(struct xe_gt *gt);
>   
>   /**
>    * xe_gt_any_hw_engine_by_reset_domain - scan the list of engines and return the


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

* ✓ CI.Patch_applied: success for Revert "drm/xe: make gt_remove use devm"
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
  2024-05-28 18:27 ` Daniele Ceraolo Spurio
@ 2024-05-28 18:29 ` Patchwork
  2024-05-28 18:30 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-28 18:29 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm"
URL   : https://patchwork.freedesktop.org/series/134149/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: a86e8e1b93db drm-tip: 2024y-05m-28d-16h-29m-54s UTC integration manifest
=== git am output follows ===
Applying: Revert "drm/xe: make gt_remove use devm"



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

* ✗ CI.checkpatch: warning for Revert "drm/xe: make gt_remove use devm"
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
  2024-05-28 18:27 ` Daniele Ceraolo Spurio
  2024-05-28 18:29 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-05-28 18:30 ` Patchwork
  2024-05-28 18:31 ` ✗ CI.KUnit: failure " Patchwork
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-28 18:30 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm"
URL   : https://patchwork.freedesktop.org/series/134149/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 3b7b589f081e671b58b5710a047cdcac35606e18
Author: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Date:   Tue May 28 11:23:54 2024 -0700

    Revert "drm/xe: make gt_remove use devm"
    
    The gt_remove function was explictly added as part of the remove flow
    instead of using drmm/devm automatic cleanup due to it being illegal
    to remove a component after the driver has been detached from the pci
    device; the GSC proxy component is removed as part of gt_remove, so we
    need to do it in the pci cleanup flow. The function already has a
    comment above it to explain this.
    
    Note that the change to use the devm also caused an invalid pointer
    deref in the gsc_proxy unbind function, but I didn't bother to debug
    which pointer was bad since we shouldn't be calling the unbind that
    late anyway and this revert fixes it.
    
    Both issue were not seen in CI because the GSC loading is temporarily
    disabled due to a critical bug, which means we're not binding the
    component.
    
    Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
    Cc: Matthew Auld <matthew.auld@intel.com>
    Cc: Andrzej Hajda <andrzej.hajda@intel.com>
    Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
+ /mt/dim checkpatch a86e8e1b93dba695cc2f1820a8b4de6a161487e7 drm-intel
3b7b589f081e Revert "drm/xe: make gt_remove use devm"
-:6: WARNING:TYPO_SPELLING: 'explictly' may be misspelled - perhaps 'explicitly'?
#6: 
The gt_remove function was explictly added as part of the remove flow
                           ^^^^^^^^^

total: 0 errors, 1 warnings, 0 checks, 97 lines checked



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

* ✗ CI.KUnit: failure for Revert "drm/xe: make gt_remove use devm"
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (2 preceding siblings ...)
  2024-05-28 18:30 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-05-28 18:31 ` Patchwork
  2024-05-29 16:07 ` ✓ CI.Patch_applied: success for Revert "drm/xe: make gt_remove use devm" (rev2) Patchwork
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-28 18:31 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm"
URL   : https://patchwork.freedesktop.org/series/134149/
State : failure

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:30:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:30:19] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make 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)
      |      ^~~~~~~~~~~~~~~~~

[18:30:46] Starting KUnit Kernel (1/1)...
[18:30:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:30:46] =================== guc_dbm (7 subtests) ===================
[18:30:46] [PASSED] test_empty
[18:30:46] [PASSED] test_default
[18:30:46] ======================== test_size  ========================
[18:30:46] [PASSED] 4
[18:30:46] [PASSED] 8
[18:30:46] [PASSED] 32
[18:30:46] [PASSED] 256
[18:30:46] ==================== [PASSED] test_size ====================
[18:30:46] ======================= test_reuse  ========================
[18:30:46] [PASSED] 4
[18:30:46] [PASSED] 8
[18:30:46] [PASSED] 32
[18:30:46] [PASSED] 256
[18:30:46] =================== [PASSED] test_reuse ====================
[18:30:46] =================== test_range_overlap  ====================
[18:30:46] [PASSED] 4
[18:30:46] [PASSED] 8
[18:30:46] [PASSED] 32
[18:30:46] [PASSED] 256
[18:30:46] =============== [PASSED] test_range_overlap ================
[18:30:46] =================== test_range_compact  ====================
[18:30:46] [PASSED] 4
[18:30:46] [PASSED] 8
[18:30:46] [PASSED] 32
[18:30:46] [PASSED] 256
[18:30:46] =============== [PASSED] test_range_compact ================
[18:30:46] ==================== test_range_spare  =====================
[18:30:46] [PASSED] 4
[18:30:46] [PASSED] 8
[18:30:46] [PASSED] 32
[18:30:46] [PASSED] 256
[18:30:46] ================ [PASSED] test_range_spare =================
[18:30:46] ===================== [PASSED] guc_dbm =====================
[18:30:46] =================== guc_idm (6 subtests) ===================
[18:30:46] [PASSED] bad_init
[18:30:46] [PASSED] no_init
[18:30:46] [PASSED] init_fini
[18:30:46] [PASSED] check_used
[18:30:46] [PASSED] check_quota
[18:30:46] [PASSED] check_all
[18:30:46] ===================== [PASSED] guc_idm =====================
[18:30:46] ================== no_relay (3 subtests) ===================
[18:30:46] [PASSED] xe_drops_guc2pf_if_not_ready
[18:30:46] [PASSED] xe_drops_guc2vf_if_not_ready
[18:30:46] [PASSED] xe_rejects_send_if_not_ready
[18:30:46] ==================== [PASSED] no_relay =====================
[18:30:46] ================== pf_relay (14 subtests) ==================
[18:30:46] [PASSED] pf_rejects_guc2pf_too_short
[18:30:46] [PASSED] pf_rejects_guc2pf_too_long
[18:30:46] [PASSED] pf_rejects_guc2pf_no_payload
[18:30:46] [PASSED] pf_fails_no_payload
[18:30:46] [PASSED] pf_fails_bad_origin
[18:30:46] [PASSED] pf_fails_bad_type
[18:30:46] [PASSED] pf_txn_reports_error
[18:30:46] [PASSED] pf_txn_sends_pf2guc
[18:30:46] [PASSED] pf_sends_pf2guc
[18:30:46] [SKIPPED] pf_loopback_nop
[18:30:46] [SKIPPED] pf_loopback_echo
[18:30:46] [SKIPPED] pf_loopback_fail
[18:30:46] [SKIPPED] pf_loopback_busy
[18:30:46] [SKIPPED] pf_loopback_retry
[18:30:46] ==================== [PASSED] pf_relay =====================
[18:30:46] ================== vf_relay (3 subtests) ===================
[18:30:46] [PASSED] vf_rejects_guc2vf_too_short
[18:30:46] [PASSED] vf_rejects_guc2vf_too_long
[18:30:46] [PASSED] vf_rejects_guc2vf_no_payload
[18:30:46] ==================== [PASSED] vf_relay =====================
[18:30:46] ================= pf_service (11 subtests) =================
[18:30:46] [PASSED] pf_negotiate_any
[18:30:46] [PASSED] pf_negotiate_base_match
[18:30:46] [PASSED] pf_negotiate_base_newer
[18:30:46] [PASSED] pf_negotiate_base_next
[18:30:46] [SKIPPED] pf_negotiate_base_older
[18:30:46] [PASSED] pf_negotiate_base_prev
[18:30:46] [PASSED] pf_negotiate_latest_match
[18:30:46] [PASSED] pf_negotiate_latest_newer
[18:30:46] [PASSED] pf_negotiate_latest_next
[18:30:46] [SKIPPED] pf_negotiate_latest_older
[18:30:46] [SKIPPED] pf_negotiate_latest_prev
[18:30:46] =================== [PASSED] pf_service ====================
[18:30:46] ===================== lmtt (1 subtest) =====================
[18:30:46] ======================== test_ops  =========================
[18:30:46] [PASSED] 2-level
[18:30:46] [PASSED] multi-level
[18:30:46] ==================== [PASSED] test_ops =====================
[18:30:46] ====================== [PASSED] lmtt =======================
[18:30:46] ==================== xe_bo (2 subtests) ====================
[18:30:46] [SKIPPED] xe_ccs_migrate_kunit
[18:30:46] [SKIPPED] xe_bo_evict_kunit
[18:30:46] ===================== [SKIPPED] xe_bo ======================
[18:30:46] ================== xe_dma_buf (1 subtest) ==================
[18:30:46] [SKIPPED] xe_dma_buf_kunit
[18:30:46] =================== [SKIPPED] xe_dma_buf ===================
[18:30:46] ================== xe_migrate (1 subtest) ==================
[18:30:46] [SKIPPED] xe_migrate_sanity_kunit
[18:30:46] =================== [SKIPPED] xe_migrate ===================
[18:30:46] =================== xe_mocs (2 subtests) ===================
[18:30:46] [SKIPPED] xe_live_mocs_kernel_kunit
[18:30:46] [SKIPPED] xe_live_mocs_reset_kunit
[18:30:46] ==================== [SKIPPED] xe_mocs =====================
[18:30:46] ==================== args (11 subtests) ====================
[18:30:46] [PASSED] count_args_test
[18:30:46] [PASSED] call_args_example
[18:30:46] [PASSED] call_args_test
[18:30:46] [PASSED] drop_first_arg_example
[18:30:46] [PASSED] drop_first_arg_test
[18:30:46] [PASSED] first_arg_example
[18:30:46] [PASSED] first_arg_test
[18:30:46] [PASSED] last_arg_example
[18:30:46] [PASSED] last_arg_test
[18:30:46] [PASSED] pick_arg_example
[18:30:46] [PASSED] sep_comma_example
[18:30:46] ====================== [PASSED] args =======================
[18:30:46] =================== xe_pci (2 subtests) ====================
[18:30:46] [PASSED] xe_gmdid_graphics_ip
[18:30:46] [PASSED] xe_gmdid_media_ip
[18:30:46] ===================== [PASSED] xe_pci ======================
[18:30:46] ==================== xe_rtp (1 subtest) ====================
[18:30:46] ================== xe_rtp_process_tests  ===================
[18:30:46] [PASSED] coalesce-same-reg
[18:30:46] [PASSED] no-match-no-add
[18:30:46] [PASSED] no-match-no-add-multiple-rules
[18:30:46] [PASSED] two-regs-two-entries
[18:30:46] [PASSED] clr-one-set-other
[18:30:46] [PASSED] set-field
[18:30:46] [PASSED] conflict-duplicate
[18:30:46] [PASSED] conflict-not-disjoint
[18:30:46] [PASSED] conflict-reg-type
[18:30:46] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[18:30:46] ===================== [PASSED] xe_rtp ======================
[18:30:46] ==================== xe_wa (1 subtest) =====================
[18:30:46] ======================== xe_wa_gt  =========================
[18:30:46] [PASSED] TIGERLAKE (B0)
[18:30:46] [PASSED] DG1 (A0)
[18:30:46] [PASSED] DG1 (B0)
[18:30:46] [PASSED] ALDERLAKE_S (A0)
[18:30:46] [PASSED] ALDERLAKE_S (B0)
[18:30:46] [PASSED] ALDERLAKE_S (C0)
[18:30:46] [PASSED] ALDERLAKE_S (D0)
[18:30:46] [PASSED] ALDERLAKE_P (A0)
[18:30:46] [PASSED] ALDERLAKE_P (B0)
[18:30:46] [PASSED] ALDERLAKE_P (C0)
[18:30:46] [PASSED] ALDERLAKE_S_RPLS (D0)
[18:30:46] [PASSED] ALDERLAKE_P_RPLU (E0)
[18:30:46] [PASSED] DG2_G10 (C0)
[18:30:46] [PASSED] DG2_G11 (B1)
[18:30:46] [PASSED] DG2_G12 (A1)
[18:30:46] [PASSED] METEORLAKE (g:A0, m:A0)
[18:30:46] [PASSED] METEORLAKE (g:A0, m:A0)
[18:30:46] [PASSED] METEORLAKE (g:A0, m:A0)
[18:30:46] [PASSED] LUNARLAKE (g:A0, m:A0)
[18:30:46] [PASSED] LUNARLAKE (g:B0, m:A0)
[18:30:46] ==================== [PASSED] xe_wa_gt =====================
[18:30:46] ====================== [PASSED] xe_wa ======================
[18:30:46] ============================================================
[18:30:46] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[18:30:46] Elapsed time: 31.092s total, 4.303s configuring, 26.519s building, 0.220s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
ERROR:root:
WARNING: unmet direct dependencies detected for DRM_DISPLAY_HDMI_STATE_HELPER
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && DRM_DISPLAY_HELPER [=y] && DRM_DISPLAY_HDMI_HELPER [=n]
  Selected by [y]:
  - DRM_KUNIT_TEST [=y] && HAS_IOMEM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y]

WARNING: unmet direct dependencies detected for DRM_DISPLAY_HDMI_STATE_HELPER
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && DRM_DISPLAY_HELPER [=y] && DRM_DISPLAY_HDMI_HELPER [=n]
  Selected by [y]:
  - DRM_KUNIT_TEST [=y] && HAS_IOMEM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y]

WARNING: unmet direct dependencies detected for DRM_DISPLAY_HDMI_STATE_HELPER
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && DRM_DISPLAY_HELPER [=y] && DRM_DISPLAY_HDMI_HELPER [=n]
  Selected by [y]:
  - DRM_KUNIT_TEST [=y] && HAS_IOMEM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y]
../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)
      |      ^~~~~~~~~~~~~~~~~
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc':
drm_connector_test.c:(.text+0x570): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc':
drm_connector_test.c:(.text+0x760): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc':
drm_connector_test.c:(.text+0x950): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc':
drm_connector_test.c:(.text+0xb40): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc':
drm_connector_test.c:(.text+0xd30): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o:drm_connector_test.c:(.text+0xf26): more undefined references to `drm_hdmi_compute_mode_clock' follow
/usr/bin/ld: drivers/gpu/drm/display/drm_hdmi_state_helper.o: in function `drm_atomic_helper_connector_hdmi_check':
drm_hdmi_state_helper.c:(.text+0x9d8): undefined reference to `drm_hdmi_avi_infoframe_colorimetry'
/usr/bin/ld: drm_hdmi_state_helper.c:(.text+0x9ea): undefined reference to `drm_hdmi_avi_infoframe_bars'
/usr/bin/ld: drm_hdmi_state_helper.c:(.text+0xa54): undefined reference to `drm_hdmi_infoframe_set_hdr_metadata'
collect2: error: ld returned 1 exit status
make[3]: *** [../scripts/Makefile.vmlinux:34: vmlinux] Error 1
make[2]: *** [/kernel/Makefile:1171: vmlinux] Error 2
make[1]: *** [/kernel/Makefile:240: __sub-make] Error 2
make: *** [Makefile:240: __sub-make] Error 2

[18:30:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:30:48] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* Re: [PATCH] Revert "drm/xe: make gt_remove use devm"
  2024-05-28 18:27 ` Daniele Ceraolo Spurio
@ 2024-05-29  8:26   ` Matthew Auld
  2024-05-29 16:38     ` Daniele Ceraolo Spurio
  0 siblings, 1 reply; 15+ messages in thread
From: Matthew Auld @ 2024-05-29  8:26 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio, intel-xe; +Cc: Andrzej Hajda, Rodrigo Vivi

Hi,

On 28/05/2024 19:27, Daniele Ceraolo Spurio wrote:
> 
> 
> On 5/28/2024 11:23 AM, Daniele Ceraolo Spurio wrote:
>> The gt_remove function was explictly added as part of the remove flow
>> instead of using drmm/devm automatic cleanup due to it being illegal
>> to remove a component after the driver has been detached from the pci
>> device; the GSC proxy component is removed as part of gt_remove, so we
>> need to do it in the pci cleanup flow. The function already has a
>> comment above it to explain this.
>>
>> Note that the change to use the devm also caused an invalid pointer
>> deref in the gsc_proxy unbind function, but I didn't bother to debug
>> which pointer was bad since we shouldn't be calling the unbind that
>> late anyway and this revert fixes it.
> 
> Here is the bad pointer deref log in case anyone wants to have a better 
> look:
> 
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-8/igt@xe_module_load@reload.html

I also ran into this. If we remove the explicit pci_set_drvdata(pdev, 
NULL) in our pci remove callback, and rather let the core driver do it 
for us, it seems to fix the above. But then we trigger:

<4> [69.885925] WARNING: CPU: 2 PID: 1441 at drivers/base/devres.c:690 
devres_release_group+0x103/0x120

Which I am not too sure about.

Anyway, if it is indeed a no-go to use devm here,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>

> 
> Daniele
> 
>>
>> Both issue were not seen in CI because the GSC loading is temporarily
>> disabled due to a critical bug, which means we're not binding the
>> component.
>>
>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>> Cc: Matthew Auld <matthew.auld@intel.com>
>> Cc: Andrzej Hajda <andrzej.hajda@intel.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_device.c | 22 ++++++++++++++++++++--
>>   drivers/gpu/drm/xe/xe_gt.c     | 16 +++++++++-------
>>   drivers/gpu/drm/xe/xe_gt.h     |  1 +
>>   3 files changed, 30 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_device.c 
>> b/drivers/gpu/drm/xe/xe_device.c
>> index 85c1b0c406a6..4c44f23e58ea 100644
>> --- a/drivers/gpu/drm/xe/xe_device.c
>> +++ b/drivers/gpu/drm/xe/xe_device.c
>> @@ -549,6 +549,7 @@ int xe_device_probe(struct xe_device *xe)
>>       struct xe_tile *tile;
>>       struct xe_gt *gt;
>>       int err;
>> +    u8 last_gt;
>>       u8 id;
>>       xe_pat_init_early(xe);
>> @@ -647,16 +648,18 @@ int xe_device_probe(struct xe_device *xe)
>>           goto err_irq_shutdown;
>>       for_each_gt(gt, xe, id) {
>> +        last_gt = id;
>> +
>>           err = xe_gt_init(gt);
>>           if (err)
>> -            goto err_irq_shutdown;
>> +            goto err_fini_gt;
>>       }
>>       xe_heci_gsc_init(xe);
>>       err = xe_display_init(xe);
>>       if (err)
>> -        goto err_irq_shutdown;
>> +        goto err_fini_gt;
>>       err = drm_dev_register(&xe->drm, 0);
>>       if (err)
>> @@ -672,6 +675,15 @@ int xe_device_probe(struct xe_device *xe)
>>   err_fini_display:
>>       xe_display_driver_remove(xe);
>> +
>> +err_fini_gt:
>> +    for_each_gt(gt, xe, id) {
>> +        if (id < last_gt)
>> +            xe_gt_remove(gt);
>> +        else
>> +            break;
>> +    }
>> +
>>   err_irq_shutdown:
>>       xe_irq_shutdown(xe);
>>   err:
>> @@ -689,12 +701,18 @@ static void xe_device_remove_display(struct 
>> xe_device *xe)
>>   void xe_device_remove(struct xe_device *xe)
>>   {
>> +    struct xe_gt *gt;
>> +    u8 id;
>> +
>>       xe_device_remove_display(xe);
>>       xe_display_fini(xe);
>>       xe_heci_gsc_fini(xe);
>> +    for_each_gt(gt, xe, id)
>> +        xe_gt_remove(gt);
>> +
>>       xe_irq_shutdown(xe);
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
>> index 6f4b59a6e710..98c2228b51d0 100644
>> --- a/drivers/gpu/drm/xe/xe_gt.c
>> +++ b/drivers/gpu/drm/xe/xe_gt.c
>> @@ -93,14 +93,16 @@ void xe_gt_sanitize(struct xe_gt *gt)
>>       gt->uc.guc.submission_state.enabled = false;
>>   }
>> -/*
>> - * Clean up the GT structures before driver removal. This function 
>> should only
>> - * act on objects/structures that must be cleaned before the driver 
>> removal
>> - * callback is complete and therefore can't be deferred to a drmm 
>> action.
>> +/**
>> + * xe_gt_remove() - Clean up the GT structures before driver removal
>> + * @gt: the GT object
>> + *
>> + * This function should only act on objects/structures that must be 
>> cleaned
>> + * before the driver removal callback is complete and therefore can't be
>> + * deferred to a drmm action.
>>    */
>> -static void gt_remove(void *arg)
>> +void xe_gt_remove(struct xe_gt *gt)
>>   {
>> -    struct xe_gt *gt = arg;
>>       int i;
>>       xe_uc_remove(&gt->uc);
>> @@ -566,7 +568,7 @@ int xe_gt_init(struct xe_gt *gt)
>>       xe_gt_record_user_engines(gt);
>> -    return devm_add_action_or_reset(gt_to_xe(gt)->drm.dev, gt_remove, 
>> gt);
>> +    return 0;
>>   }
>>   void xe_gt_record_user_engines(struct xe_gt *gt)
>> diff --git a/drivers/gpu/drm/xe/xe_gt.h b/drivers/gpu/drm/xe/xe_gt.h
>> index d0747edfe020..9073ac68a777 100644
>> --- a/drivers/gpu/drm/xe/xe_gt.h
>> +++ b/drivers/gpu/drm/xe/xe_gt.h
>> @@ -56,6 +56,7 @@ int xe_gt_suspend(struct xe_gt *gt);
>>   int xe_gt_resume(struct xe_gt *gt);
>>   void xe_gt_reset_async(struct xe_gt *gt);
>>   void xe_gt_sanitize(struct xe_gt *gt);
>> +void xe_gt_remove(struct xe_gt *gt);
>>   /**
>>    * xe_gt_any_hw_engine_by_reset_domain - scan the list of engines 
>> and return the
> 

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

* ✓ CI.Patch_applied: success for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (3 preceding siblings ...)
  2024-05-28 18:31 ` ✗ CI.KUnit: failure " Patchwork
@ 2024-05-29 16:07 ` Patchwork
  2024-05-29 16:07 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:07 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: fc8c84173ee4 drm-tip: 2024y-05m-29d-14h-48m-16s UTC integration manifest
=== git am output follows ===
Applying: Revert "drm/xe: make gt_remove use devm"



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

* ✗ CI.checkpatch: warning for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (4 preceding siblings ...)
  2024-05-29 16:07 ` ✓ CI.Patch_applied: success for Revert "drm/xe: make gt_remove use devm" (rev2) Patchwork
@ 2024-05-29 16:07 ` Patchwork
  2024-05-29 16:08 ` ✓ CI.KUnit: success " Patchwork
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:07 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8a7b48d637bbac89e1e4b4a4b4fc62da1edd8c0b
Author: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Date:   Tue May 28 11:23:54 2024 -0700

    Revert "drm/xe: make gt_remove use devm"
    
    The gt_remove function was explictly added as part of the remove flow
    instead of using drmm/devm automatic cleanup due to it being illegal
    to remove a component after the driver has been detached from the pci
    device; the GSC proxy component is removed as part of gt_remove, so we
    need to do it in the pci cleanup flow. The function already has a
    comment above it to explain this.
    
    Note that the change to use the devm also caused an invalid pointer
    deref in the gsc_proxy unbind function, but I didn't bother to debug
    which pointer was bad since we shouldn't be calling the unbind that
    late anyway and this revert fixes it.
    
    Both issue were not seen in CI because the GSC loading is temporarily
    disabled due to a critical bug, which means we're not binding the
    component.
    
    Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
    Cc: Matthew Auld <matthew.auld@intel.com>
    Cc: Andrzej Hajda <andrzej.hajda@intel.com>
    Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Reviewed-by: Matthew Auld <matthew.auld@intel.com>
+ /mt/dim checkpatch fc8c84173ee4de00aaea8235be8442b50af5454a drm-intel
8a7b48d637bb Revert "drm/xe: make gt_remove use devm"
-:6: WARNING:TYPO_SPELLING: 'explictly' may be misspelled - perhaps 'explicitly'?
#6: 
The gt_remove function was explictly added as part of the remove flow
                           ^^^^^^^^^

total: 0 errors, 1 warnings, 0 checks, 97 lines checked



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

* ✓ CI.KUnit: success for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (5 preceding siblings ...)
  2024-05-29 16:07 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-05-29 16:08 ` Patchwork
  2024-05-29 16:20 ` ✓ CI.Build: " Patchwork
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:08 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:07:49] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:07:53] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make 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)
      |      ^~~~~~~~~~~~~~~~~

[16:08:20] Starting KUnit Kernel (1/1)...
[16:08:20] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:08:20] =================== guc_dbm (7 subtests) ===================
[16:08:20] [PASSED] test_empty
[16:08:20] [PASSED] test_default
[16:08:20] ======================== test_size  ========================
[16:08:20] [PASSED] 4
[16:08:20] [PASSED] 8
[16:08:20] [PASSED] 32
[16:08:20] [PASSED] 256
[16:08:20] ==================== [PASSED] test_size ====================
[16:08:20] ======================= test_reuse  ========================
[16:08:20] [PASSED] 4
[16:08:20] [PASSED] 8
[16:08:20] [PASSED] 32
[16:08:20] [PASSED] 256
[16:08:20] =================== [PASSED] test_reuse ====================
[16:08:20] =================== test_range_overlap  ====================
[16:08:20] [PASSED] 4
[16:08:20] [PASSED] 8
[16:08:20] [PASSED] 32
[16:08:20] [PASSED] 256
[16:08:20] =============== [PASSED] test_range_overlap ================
[16:08:20] =================== test_range_compact  ====================
[16:08:20] [PASSED] 4
[16:08:20] [PASSED] 8
[16:08:20] [PASSED] 32
[16:08:20] [PASSED] 256
[16:08:20] =============== [PASSED] test_range_compact ================
[16:08:20] ==================== test_range_spare  =====================
[16:08:20] [PASSED] 4
[16:08:20] [PASSED] 8
[16:08:20] [PASSED] 32
[16:08:20] [PASSED] 256
[16:08:20] ================ [PASSED] test_range_spare =================
[16:08:20] ===================== [PASSED] guc_dbm =====================
[16:08:20] =================== guc_idm (6 subtests) ===================
[16:08:20] [PASSED] bad_init
[16:08:20] [PASSED] no_init
[16:08:20] [PASSED] init_fini
[16:08:20] [PASSED] check_used
[16:08:20] [PASSED] check_quota
[16:08:20] [PASSED] check_all
[16:08:20] ===================== [PASSED] guc_idm =====================
[16:08:20] ================== no_relay (3 subtests) ===================
[16:08:20] [PASSED] xe_drops_guc2pf_if_not_ready
[16:08:20] [PASSED] xe_drops_guc2vf_if_not_ready
[16:08:20] [PASSED] xe_rejects_send_if_not_ready
[16:08:20] ==================== [PASSED] no_relay =====================
[16:08:20] ================== pf_relay (14 subtests) ==================
[16:08:20] [PASSED] pf_rejects_guc2pf_too_short
[16:08:20] [PASSED] pf_rejects_guc2pf_too_long
[16:08:20] [PASSED] pf_rejects_guc2pf_no_payload
[16:08:20] [PASSED] pf_fails_no_payload
[16:08:20] [PASSED] pf_fails_bad_origin
[16:08:20] [PASSED] pf_fails_bad_type
[16:08:20] [PASSED] pf_txn_reports_error
[16:08:20] [PASSED] pf_txn_sends_pf2guc
[16:08:20] [PASSED] pf_sends_pf2guc
[16:08:20] [SKIPPED] pf_loopback_nop
[16:08:20] [SKIPPED] pf_loopback_echo
[16:08:20] [SKIPPED] pf_loopback_fail
[16:08:20] [SKIPPED] pf_loopback_busy
[16:08:20] [SKIPPED] pf_loopback_retry
[16:08:20] ==================== [PASSED] pf_relay =====================
[16:08:20] ================== vf_relay (3 subtests) ===================
[16:08:20] [PASSED] vf_rejects_guc2vf_too_short
[16:08:20] [PASSED] vf_rejects_guc2vf_too_long
[16:08:20] [PASSED] vf_rejects_guc2vf_no_payload
[16:08:20] ==================== [PASSED] vf_relay =====================
[16:08:20] ================= pf_service (11 subtests) =================
[16:08:20] [PASSED] pf_negotiate_any
[16:08:20] [PASSED] pf_negotiate_base_match
[16:08:20] [PASSED] pf_negotiate_base_newer
[16:08:20] [PASSED] pf_negotiate_base_next
[16:08:20] [SKIPPED] pf_negotiate_base_older
[16:08:20] [PASSED] pf_negotiate_base_prev
[16:08:20] [PASSED] pf_negotiate_latest_match
[16:08:20] [PASSED] pf_negotiate_latest_newer
[16:08:20] [PASSED] pf_negotiate_latest_next
[16:08:20] [SKIPPED] pf_negotiate_latest_older
[16:08:20] [SKIPPED] pf_negotiate_latest_prev
[16:08:20] =================== [PASSED] pf_service ====================
[16:08:20] ===================== lmtt (1 subtest) =====================
[16:08:20] ======================== test_ops  =========================
[16:08:20] [PASSED] 2-level
[16:08:20] [PASSED] multi-level
[16:08:20] ==================== [PASSED] test_ops =====================
[16:08:20] ====================== [PASSED] lmtt =======================
[16:08:20] ==================== xe_bo (2 subtests) ====================
[16:08:20] [SKIPPED] xe_ccs_migrate_kunit
[16:08:20] [SKIPPED] xe_bo_evict_kunit
[16:08:20] ===================== [SKIPPED] xe_bo ======================
[16:08:20] ================== xe_dma_buf (1 subtest) ==================
[16:08:20] [SKIPPED] xe_dma_buf_kunit
[16:08:20] =================== [SKIPPED] xe_dma_buf ===================
[16:08:20] ================== xe_migrate (1 subtest) ==================
[16:08:20] [SKIPPED] xe_migrate_sanity_kunit
[16:08:20] =================== [SKIPPED] xe_migrate ===================
[16:08:20] =================== xe_mocs (2 subtests) ===================
[16:08:20] [SKIPPED] xe_live_mocs_kernel_kunit
[16:08:20] [SKIPPED] xe_live_mocs_reset_kunit
[16:08:20] ==================== [SKIPPED] xe_mocs =====================
[16:08:20] ==================== args (11 subtests) ====================
[16:08:20] [PASSED] count_args_test
[16:08:20] [PASSED] call_args_example
[16:08:20] [PASSED] call_args_test
[16:08:20] [PASSED] drop_first_arg_example
[16:08:20] [PASSED] drop_first_arg_test
[16:08:20] [PASSED] first_arg_example
[16:08:20] [PASSED] first_arg_test
[16:08:20] [PASSED] last_arg_example
[16:08:20] [PASSED] last_arg_test
[16:08:20] [PASSED] pick_arg_example
[16:08:20] [PASSED] sep_comma_example
[16:08:20] ====================== [PASSED] args =======================
[16:08:20] =================== xe_pci (2 subtests) ====================
[16:08:20] [PASSED] xe_gmdid_graphics_ip
[16:08:20] [PASSED] xe_gmdid_media_ip
[16:08:20] ===================== [PASSED] xe_pci ======================
[16:08:20] ==================== xe_rtp (1 subtest) ====================
[16:08:20] ================== xe_rtp_process_tests  ===================
[16:08:20] [PASSED] coalesce-same-reg
[16:08:20] [PASSED] no-match-no-add
[16:08:20] [PASSED] no-match-no-add-multiple-rules
[16:08:20] [PASSED] two-regs-two-entries
[16:08:20] [PASSED] clr-one-set-other
[16:08:20] [PASSED] set-field
[16:08:20] [PASSED] conflict-duplicate
[16:08:20] [PASSED] conflict-not-disjoint
[16:08:20] [PASSED] conflict-reg-type
[16:08:20] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[16:08:20] ===================== [PASSED] xe_rtp ======================
[16:08:20] ==================== xe_wa (1 subtest) =====================
[16:08:20] ======================== xe_wa_gt  =========================
[16:08:20] [PASSED] TIGERLAKE (B0)
[16:08:20] [PASSED] DG1 (A0)
[16:08:20] [PASSED] DG1 (B0)
[16:08:20] [PASSED] ALDERLAKE_S (A0)
[16:08:20] [PASSED] ALDERLAKE_S (B0)
[16:08:20] [PASSED] ALDERLAKE_S (C0)
[16:08:20] [PASSED] ALDERLAKE_S (D0)
[16:08:20] [PASSED] ALDERLAKE_P (A0)
[16:08:20] [PASSED] ALDERLAKE_P (B0)
[16:08:20] [PASSED] ALDERLAKE_P (C0)
[16:08:20] [PASSED] ALDERLAKE_S_RPLS (D0)
[16:08:20] [PASSED] ALDERLAKE_P_RPLU (E0)
[16:08:20] [PASSED] DG2_G10 (C0)
[16:08:20] [PASSED] DG2_G11 (B1)
[16:08:20] [PASSED] DG2_G12 (A1)
[16:08:20] [PASSED] METEORLAKE (g:A0, m:A0)
[16:08:20] [PASSED] METEORLAKE (g:A0, m:A0)
[16:08:20] [PASSED] METEORLAKE (g:A0, m:A0)
[16:08:20] [PASSED] LUNARLAKE (g:A0, m:A0)
[16:08:20] [PASSED] LUNARLAKE (g:B0, m:A0)
[16:08:20] ==================== [PASSED] xe_wa_gt =====================
[16:08:20] ====================== [PASSED] xe_wa ======================
[16:08:20] ============================================================
[16:08:20] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[16:08:20] Elapsed time: 31.046s total, 4.239s configuring, 26.537s building, 0.222s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:08:20] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:08:22] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make 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)
      |      ^~~~~~~~~~~~~~~~~

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

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



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

* ✓ CI.Build: success for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (6 preceding siblings ...)
  2024-05-29 16:08 ` ✓ CI.KUnit: success " Patchwork
@ 2024-05-29 16:20 ` Patchwork
  2024-05-29 16:21 ` ✗ CI.Hooks: failure " Patchwork
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:20 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : success

== Summary ==

lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/
lib/modules/6.10.0-rc1-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc1-xe/build
lib/modules/6.10.0-rc1-xe/modules.alias.bin
lib/modules/6.10.0-rc1-xe/modules.builtin
lib/modules/6.10.0-rc1-xe/modules.softdep
lib/modules/6.10.0-rc1-xe/modules.alias
lib/modules/6.10.0-rc1-xe/modules.order
lib/modules/6.10.0-rc1-xe/modules.symbols
lib/modules/6.10.0-rc1-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1716999620:package_x86_64_nodebug\r\e[0K'
+ sync
^[[0Ksection_end:1716999620:package_x86_64_nodebug
^[[0K
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✗ CI.Hooks: failure for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (7 preceding siblings ...)
  2024-05-29 16:20 ` ✓ CI.Build: " Patchwork
@ 2024-05-29 16:21 ` Patchwork
  2024-05-29 16:22 ` ✓ CI.checksparse: success " Patchwork
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:21 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
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/generated/compile.h
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool 
  UPD     include/config/kernel.release
  UPD     include/generated/utsrelease.h
  HOSTCC  /workspace/kernel/build64-default/tools/objtool/fixdep.o
  CALL    ../scripts/checksyscalls.sh
  HOSTLD  /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/fixdep
  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/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/special.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 M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'.  Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2



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

* ✓ CI.checksparse: success for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (8 preceding siblings ...)
  2024-05-29 16:21 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-05-29 16:22 ` Patchwork
  2024-05-29 16:47 ` ✓ CI.BAT: " Patchwork
  2024-05-29 18:17 ` ✗ CI.FULL: failure " Patchwork
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:22 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : success

== 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 fc8c84173ee4de00aaea8235be8442b50af5454a
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!

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



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

* Re: [PATCH] Revert "drm/xe: make gt_remove use devm"
  2024-05-29  8:26   ` Matthew Auld
@ 2024-05-29 16:38     ` Daniele Ceraolo Spurio
  0 siblings, 0 replies; 15+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-05-29 16:38 UTC (permalink / raw)
  To: Matthew Auld, intel-xe; +Cc: Andrzej Hajda, Rodrigo Vivi



On 5/29/2024 1:26 AM, Matthew Auld wrote:
> Hi,
>
> On 28/05/2024 19:27, Daniele Ceraolo Spurio wrote:
>>
>>
>> On 5/28/2024 11:23 AM, Daniele Ceraolo Spurio wrote:
>>> The gt_remove function was explictly added as part of the remove flow
>>> instead of using drmm/devm automatic cleanup due to it being illegal
>>> to remove a component after the driver has been detached from the pci
>>> device; the GSC proxy component is removed as part of gt_remove, so we
>>> need to do it in the pci cleanup flow. The function already has a
>>> comment above it to explain this.
>>>
>>> Note that the change to use the devm also caused an invalid pointer
>>> deref in the gsc_proxy unbind function, but I didn't bother to debug
>>> which pointer was bad since we shouldn't be calling the unbind that
>>> late anyway and this revert fixes it.
>>
>> Here is the bad pointer deref log in case anyone wants to have a 
>> better look:
>>
>> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-8/igt@xe_module_load@reload.html 
>>
>
> I also ran into this. If we remove the explicit pci_set_drvdata(pdev, 
> NULL) in our pci remove callback, and rather let the core driver do it 
> for us, it seems to fix the above. But then we trigger:
>
> <4> [69.885925] WARNING: CPU: 2 PID: 1441 at drivers/base/devres.c:690 
> devres_release_group+0x103/0x120
>
> Which I am not too sure about.

This error is why I was saying that we can't delete the component after 
the pci_remove has completed. This is my understanding of what's 
happening (which might be wrong):
the component resources are auto-cleared when the driver is detached 
from the PCI device. Since the component subsystem has no guarantee that 
the driver is still present after that point, they can't call the unbind 
function while doing their cleanup. If we call the component_del after 
that point, the resources are not there anymore, which result in the 
above warning.

>
> Anyway, if it is indeed a no-go to use devm here,
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>

Thanks!
Daniele

>
>>
>> Daniele
>>
>>>
>>> Both issue were not seen in CI because the GSC loading is temporarily
>>> disabled due to a critical bug, which means we're not binding the
>>> component.
>>>
>>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>>> Cc: Matthew Auld <matthew.auld@intel.com>
>>> Cc: Andrzej Hajda <andrzej.hajda@intel.com>
>>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>>> ---
>>>   drivers/gpu/drm/xe/xe_device.c | 22 ++++++++++++++++++++--
>>>   drivers/gpu/drm/xe/xe_gt.c     | 16 +++++++++-------
>>>   drivers/gpu/drm/xe/xe_gt.h     |  1 +
>>>   3 files changed, 30 insertions(+), 9 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_device.c 
>>> b/drivers/gpu/drm/xe/xe_device.c
>>> index 85c1b0c406a6..4c44f23e58ea 100644
>>> --- a/drivers/gpu/drm/xe/xe_device.c
>>> +++ b/drivers/gpu/drm/xe/xe_device.c
>>> @@ -549,6 +549,7 @@ int xe_device_probe(struct xe_device *xe)
>>>       struct xe_tile *tile;
>>>       struct xe_gt *gt;
>>>       int err;
>>> +    u8 last_gt;
>>>       u8 id;
>>>       xe_pat_init_early(xe);
>>> @@ -647,16 +648,18 @@ int xe_device_probe(struct xe_device *xe)
>>>           goto err_irq_shutdown;
>>>       for_each_gt(gt, xe, id) {
>>> +        last_gt = id;
>>> +
>>>           err = xe_gt_init(gt);
>>>           if (err)
>>> -            goto err_irq_shutdown;
>>> +            goto err_fini_gt;
>>>       }
>>>       xe_heci_gsc_init(xe);
>>>       err = xe_display_init(xe);
>>>       if (err)
>>> -        goto err_irq_shutdown;
>>> +        goto err_fini_gt;
>>>       err = drm_dev_register(&xe->drm, 0);
>>>       if (err)
>>> @@ -672,6 +675,15 @@ int xe_device_probe(struct xe_device *xe)
>>>   err_fini_display:
>>>       xe_display_driver_remove(xe);
>>> +
>>> +err_fini_gt:
>>> +    for_each_gt(gt, xe, id) {
>>> +        if (id < last_gt)
>>> +            xe_gt_remove(gt);
>>> +        else
>>> +            break;
>>> +    }
>>> +
>>>   err_irq_shutdown:
>>>       xe_irq_shutdown(xe);
>>>   err:
>>> @@ -689,12 +701,18 @@ static void xe_device_remove_display(struct 
>>> xe_device *xe)
>>>   void xe_device_remove(struct xe_device *xe)
>>>   {
>>> +    struct xe_gt *gt;
>>> +    u8 id;
>>> +
>>>       xe_device_remove_display(xe);
>>>       xe_display_fini(xe);
>>>       xe_heci_gsc_fini(xe);
>>> +    for_each_gt(gt, xe, id)
>>> +        xe_gt_remove(gt);
>>> +
>>>       xe_irq_shutdown(xe);
>>>   }
>>> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
>>> index 6f4b59a6e710..98c2228b51d0 100644
>>> --- a/drivers/gpu/drm/xe/xe_gt.c
>>> +++ b/drivers/gpu/drm/xe/xe_gt.c
>>> @@ -93,14 +93,16 @@ void xe_gt_sanitize(struct xe_gt *gt)
>>>       gt->uc.guc.submission_state.enabled = false;
>>>   }
>>> -/*
>>> - * Clean up the GT structures before driver removal. This function 
>>> should only
>>> - * act on objects/structures that must be cleaned before the driver 
>>> removal
>>> - * callback is complete and therefore can't be deferred to a drmm 
>>> action.
>>> +/**
>>> + * xe_gt_remove() - Clean up the GT structures before driver removal
>>> + * @gt: the GT object
>>> + *
>>> + * This function should only act on objects/structures that must be 
>>> cleaned
>>> + * before the driver removal callback is complete and therefore 
>>> can't be
>>> + * deferred to a drmm action.
>>>    */
>>> -static void gt_remove(void *arg)
>>> +void xe_gt_remove(struct xe_gt *gt)
>>>   {
>>> -    struct xe_gt *gt = arg;
>>>       int i;
>>>       xe_uc_remove(&gt->uc);
>>> @@ -566,7 +568,7 @@ int xe_gt_init(struct xe_gt *gt)
>>>       xe_gt_record_user_engines(gt);
>>> -    return devm_add_action_or_reset(gt_to_xe(gt)->drm.dev, 
>>> gt_remove, gt);
>>> +    return 0;
>>>   }
>>>   void xe_gt_record_user_engines(struct xe_gt *gt)
>>> diff --git a/drivers/gpu/drm/xe/xe_gt.h b/drivers/gpu/drm/xe/xe_gt.h
>>> index d0747edfe020..9073ac68a777 100644
>>> --- a/drivers/gpu/drm/xe/xe_gt.h
>>> +++ b/drivers/gpu/drm/xe/xe_gt.h
>>> @@ -56,6 +56,7 @@ int xe_gt_suspend(struct xe_gt *gt);
>>>   int xe_gt_resume(struct xe_gt *gt);
>>>   void xe_gt_reset_async(struct xe_gt *gt);
>>>   void xe_gt_sanitize(struct xe_gt *gt);
>>> +void xe_gt_remove(struct xe_gt *gt);
>>>   /**
>>>    * xe_gt_any_hw_engine_by_reset_domain - scan the list of engines 
>>> and return the
>>


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

* ✓ CI.BAT: success for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (9 preceding siblings ...)
  2024-05-29 16:22 ` ✓ CI.checksparse: success " Patchwork
@ 2024-05-29 16:47 ` Patchwork
  2024-05-29 18:17 ` ✗ CI.FULL: failure " Patchwork
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 16:47 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

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

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : success

== Summary ==

CI Bug Log - changes from xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a_BAT -> xe-pw-134149v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (5 -> 5)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-134149v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@invalid-set-prop-any:
    - bat-atsm-2:         NOTRUN -> [SKIP][1] ([i915#6077]) +30 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-atsm-2:         NOTRUN -> [SKIP][2] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_dsc@dsc-basic:
    - bat-atsm-2:         NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#784])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - bat-atsm-2:         NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-atsm-2:         NOTRUN -> [SKIP][5] ([Intel XE#540]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-atsm-2:         NOTRUN -> [SKIP][6] ([Intel XE#1024] / [Intel XE#783])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - bat-atsm-2:         NOTRUN -> [SKIP][7] ([i915#1836]) +6 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_prop_blob@basic:
    - bat-atsm-2:         NOTRUN -> [SKIP][8] ([Intel XE#780])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_prop_blob@basic.html

  * igt@kms_psr@psr-primary-page-flip:
    - bat-atsm-2:         NOTRUN -> [SKIP][9] ([Intel XE#1024]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - bat-atsm-2:         NOTRUN -> [SKIP][10] ([Intel XE#288]) +32 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  * igt@xe_huc_copy@huc_copy:
    - bat-atsm-2:         NOTRUN -> [SKIP][11] ([Intel XE#255])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@xe_huc_copy@huc_copy.html

  * igt@xe_pat@pat-index-xe2:
    - bat-atsm-2:         NOTRUN -> [SKIP][12] ([Intel XE#977])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-atsm-2:         NOTRUN -> [SKIP][13] ([Intel XE#979]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html

  
#### Possible fixes ####

  * igt@xe_module_load@load:
    - bat-atsm-2:         [INCOMPLETE][14] ([Intel XE#1972]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/bat-atsm-2/igt@xe_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/bat-atsm-2/igt@xe_module_load@load.html

  
  [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
  [Intel XE#1972]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1972
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
  [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
  [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
  [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
  [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
  [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
  [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077


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

  * Linux: xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a -> xe-pw-134149v2

  IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a: fc8c84173ee4de00aaea8235be8442b50af5454a
  xe-pw-134149v2: 134149v2

== Logs ==

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

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

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

* ✗ CI.FULL: failure for Revert "drm/xe: make gt_remove use devm" (rev2)
  2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
                   ` (10 preceding siblings ...)
  2024-05-29 16:47 ` ✓ CI.BAT: " Patchwork
@ 2024-05-29 18:17 ` Patchwork
  11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-05-29 18:17 UTC (permalink / raw)
  To: Daniele Ceraolo Spurio; +Cc: intel-xe

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

== Series Details ==

Series: Revert "drm/xe: make gt_remove use devm" (rev2)
URL   : https://patchwork.freedesktop.org/series/134149/
State : failure

== Summary ==

CI Bug Log - changes from xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a_full -> xe-pw-134149v2_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-134149v2_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-134149v2_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 (3 -> 3)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-134149v2_full:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-adlp:         NOTRUN -> [FAIL][1] +2 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

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

  Here are the changes found in xe-pw-134149v2_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-adlp:         NOTRUN -> [SKIP][2] ([Intel XE#1125] / [Intel XE#1201])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-adlp:         [PASS][3] -> [FAIL][4] ([Intel XE#827]) +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-9/igt@kms_async_flips@alternate-sync-async-flip.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-9/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#619])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][6] ([Intel XE#324]) +2 other tests dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#316]) +8 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][8] ([Intel XE#1204])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-adlp:         NOTRUN -> [FAIL][9] ([Intel XE#1874]) +8 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][10] ([Intel XE#1124] / [Intel XE#1201]) +16 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#1124]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_joiner@basic:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#346])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_big_joiner@basic.html

  * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#367])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#787]) +74 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +49 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#314] / [Intel XE#455]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#314]) +2 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-adlp:         NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#373]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@dp-crc-multiple:
    - shard-adlp:         NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#373]) +14 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_chamelium_frames@dp-crc-multiple.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-adlp:         NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#307])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-adlp:         NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#455]) +30 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#308])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-adlp:         NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#309]) +7 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-dg2-set2:     [PASS][27] -> [DMESG-WARN][28] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-463/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#323]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@forked-move@pipe-b:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][30] ([Intel XE#282]) +3 other tests dmesg-warn
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_cursor_legacy@forked-move@pipe-b.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][31] ([Intel XE#1191] / [Intel XE#1214]) +4 other tests dmesg-warn
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#776])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#310]) +11 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][34] ([Intel XE#1195]) +1 other test incomplete
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
    - shard-adlp:         NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [FAIL][36] ([Intel XE#1861])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#1151] / [Intel XE#1201])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#651]) +4 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#653]) +24 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-adlp:         NOTRUN -> [SKIP][40] ([Intel XE#1158] / [Intel XE#1201])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#656]) +56 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#653]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][43] ([Intel XE#616])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-464/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-adlp:         NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#356])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a:
    - shard-adlp:         NOTRUN -> [FAIL][45] ([Intel XE#1331] / [Intel XE#1978]) +2 other tests fail
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-a.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][46] -> [FAIL][47] ([Intel XE#361]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-adlp:         NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#870])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#836])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-adlp:         NOTRUN -> [SKIP][54] ([Intel XE#1201]) +13 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-adlp:         NOTRUN -> [SKIP][55] ([Intel XE#1122] / [Intel XE#1201]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#929]) +20 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_psr@psr-suspend.html

  * igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [FAIL][57] ([Intel XE#294]) +1 other test fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#1127] / [Intel XE#1201]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#327])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_sysfs_edid_timing:
    - shard-adlp:         NOTRUN -> [FAIL][60] ([Intel XE#1174])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#362])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#756])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@xe_ccs@block-copy-compressed-inc-dimension:
    - shard-adlp:         NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488]) +3 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_ccs@block-copy-compressed-inc-dimension.html

  * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
    - shard-dg2-set2:     [PASS][64] -> [INCOMPLETE][65] ([Intel XE#1195]) +4 other tests incomplete
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-436/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-433/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-adlp:         NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#1447]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-adlp:         NOTRUN -> [SKIP][67] ([Intel XE#1123] / [Intel XE#1201])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-adlp:         NOTRUN -> [SKIP][68] ([Intel XE#1126] / [Intel XE#1201])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_evict@evict-cm-threads-large:
    - shard-dg2-set2:     [PASS][69] -> [TIMEOUT][70] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@xe_evict@evict-cm-threads-large.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-adlp:         NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#261]) +6 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [PASS][72] -> [TIMEOUT][73] ([Intel XE#1473] / [Intel XE#392]) +1 other test timeout
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_evict@evict-small-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +6 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#688]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#1201] / [Intel XE#1392]) +15 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#288]) +38 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@twice-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#288])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@xe_exec_fault_mode@twice-rebind-imm.html

  * igt@xe_exec_reset@cm-close-execqueues-close-fd:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][79] ([Intel XE#1214] / [Intel XE#358]) +1 other test dmesg-warn
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_exec_reset@cm-close-execqueues-close-fd.html

  * igt@xe_exec_threads@threads-cm-fd-userptr:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][80] ([Intel XE#1214]) +2 other tests dmesg-warn
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_exec_threads@threads-cm-fd-userptr.html

  * igt@xe_mmap@small-bar:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#1201] / [Intel XE#512])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_mmap@small-bar.html

  * igt@xe_noexec_ping_pong:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#379])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@xe_noexec_ping_pong.html

  * igt@xe_peer2peer@read:
    - shard-adlp:         NOTRUN -> [SKIP][83] ([Intel XE#1061] / [Intel XE#1201])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#366])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][85] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#927])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#944])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_query@multigpu-query-hwconfig.html

  
#### Possible fixes ####

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - {shard-lnl}:        [FAIL][88] ([Intel XE#1231]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-dg2-set2:     [DMESG-WARN][90] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][91] +2 other tests pass
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_flip@flip-vs-suspend:
    - {shard-lnl}:        [DMESG-WARN][92] ([Intel XE#1830]) -> [PASS][93] +1 other test pass
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-lnl-8/igt@kms_flip@flip-vs-suspend.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-dg2-set2:     [TIMEOUT][94] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-large.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_exec_reset@gt-reset-stress:
    - {shard-lnl}:        [DMESG-WARN][96] ([Intel XE#1638]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-lnl-5/igt@xe_exec_reset@gt-reset-stress.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-lnl-8/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - {shard-lnl}:        [INCOMPLETE][98] ([Intel XE#1694]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-lnl-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-lnl-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s2idle-vm-bind-userptr:
    - shard-dg2-set2:     [INCOMPLETE][100] ([Intel XE#1195] / [Intel XE#1694]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-userptr.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-adlp:         [INCOMPLETE][102] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@xe_pm@s4-multiple-execs.html

  
#### Warnings ####

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][104] ([Intel XE#873]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#873])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][106] ([Intel XE#316]) -> [SKIP][107] ([Intel XE#1201] / [Intel XE#316]) +5 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][108] ([Intel XE#324]) -> [FAIL][109] ([Intel XE#1231])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][110] ([Intel XE#1124]) -> [SKIP][111] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [FAIL][112] ([Intel XE#1231]) -> [DMESG-FAIL][113] ([Intel XE#324])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][114] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][115] ([Intel XE#1124]) +4 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][116] ([Intel XE#607]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#607])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][118] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][119] ([Intel XE#367])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][120] ([Intel XE#367]) -> [SKIP][121] ([Intel XE#1201] / [Intel XE#367])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#787]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#787]) +83 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][125] ([Intel XE#787]) +41 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][126] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][127] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][128] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][129] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +23 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2-set2:     [SKIP][130] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][131] ([Intel XE#306])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][132] ([Intel XE#306]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_chamelium_color@gamma.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_frames@hdmi-crc-multiple:
    - shard-dg2-set2:     [SKIP][134] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][135] ([Intel XE#373]) +2 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-multiple.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-multiple.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-dg2-set2:     [SKIP][136] ([Intel XE#373]) -> [SKIP][137] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2-set2:     [SKIP][138] ([Intel XE#308]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_edge_walk@256x256-top-bottom:
    - shard-dg2-set2:     [DMESG-WARN][140] ([Intel XE#282]) -> [DMESG-WARN][141] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_cursor_edge_walk@256x256-top-bottom.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-dg2-set2:     [DMESG-WARN][142] ([Intel XE#282]) -> [DMESG-WARN][143] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#323]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#323]) +2 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_cursor_legacy@single-bo@all-pipes:
    - shard-dg2-set2:     [DMESG-WARN][146] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][147] ([Intel XE#282]) +4 other tests dmesg-warn
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_cursor_legacy@single-bo@all-pipes.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_cursor_legacy@single-bo@all-pipes.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2-set2:     [SKIP][148] ([Intel XE#307]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#307])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][151] ([Intel XE#455]) +3 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#776]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#776])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#703]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#703])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][157] ([Intel XE#1135])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_feature_discovery@psr1.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_feature_discovery@psr1.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][159] ([Intel XE#651]) +17 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#651]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#651]) +23 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][163] ([Intel XE#653]) +13 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#653]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#653]) +20 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#356]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#356])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][169] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][170] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][171] ([Intel XE#498]) +2 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#870]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#870])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#908]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#908])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][177] ([Intel XE#1129])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-dg2-set2:     [DMESG-WARN][178] ([Intel XE#1162]) -> [DMESG-WARN][179] ([Intel XE#1162] / [Intel XE#1214])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#929]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#929]) +12 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][183] ([Intel XE#929]) +10 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-464/igt@kms_psr@psr-dpms.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_psr@psr-dpms.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1149]) -> [SKIP][185] ([Intel XE#1149] / [Intel XE#1201])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     [SKIP][186] ([Intel XE#327]) -> [SKIP][187] ([Intel XE#1201] / [Intel XE#327])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][189] ([Intel XE#1127])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][191] ([Intel XE#327])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#455]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#455]) +9 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@kms_vrr@flip-dpms.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][195] ([Intel XE#756])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#1091]) -> [SKIP][197] ([Intel XE#1091] / [Intel XE#1201])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@sriov_basic@bind-unbind-vf.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@sriov_basic@bind-unbind-vf.html

  * igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#288]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][201] ([Intel XE#288]) +13 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][203] ([Intel XE#378])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-466/igt@xe_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@xe_module_load@load.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#1337]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#1337])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#366]) -> [SKIP][207] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s3-basic:
    - shard-adlp:         [INCOMPLETE][208] ([Intel XE#1195] / [Intel XE#1358]) -> [DMESG-WARN][209] ([Intel XE#1191] / [Intel XE#1214])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-1/igt@xe_pm@s3-basic.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-8/igt@xe_pm@s3-basic.html

  * igt@xe_pm@s3-basic-exec:
    - shard-adlp:         [DMESG-WARN][210] ([Intel XE#1191] / [Intel XE#1214]) -> [INCOMPLETE][211] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-6/igt@xe_pm@s3-basic-exec.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-1/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - shard-adlp:         [INCOMPLETE][212] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358]) -> [DMESG-WARN][213] ([Intel XE#1162] / [Intel XE#1191] / [Intel XE#1214])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-1/igt@xe_pm@s3-d3hot-basic-exec.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_pm@s3-d3hot-basic-exec.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-adlp:         [ABORT][214] ([Intel XE#1794]) -> [DMESG-WARN][215] ([Intel XE#1214])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-adlp-2/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-dg2-set2:     [SKIP][216] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][217] ([Intel XE#944]) +1 other test skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@xe_query@multigpu-query-gt-list.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-432/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-dg2-set2:     [SKIP][218] ([Intel XE#944]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-dg2-set2:     [DMESG-FAIL][220] ([Intel XE#1760]) -> [DMESG-WARN][221] ([Intel XE#1214] / [Intel XE#1760])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134149v2/shard-dg2-463/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#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174
  [Intel XE#1191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1191
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
  [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1331
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
  [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
  [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
  [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1978]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1978
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
  [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
  [Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a -> xe-pw-134149v2

  IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1372-fc8c84173ee4de00aaea8235be8442b50af5454a: fc8c84173ee4de00aaea8235be8442b50af5454a
  xe-pw-134149v2: 134149v2

== Logs ==

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

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

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

end of thread, other threads:[~2024-05-29 18:17 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-28 18:23 [PATCH] Revert "drm/xe: make gt_remove use devm" Daniele Ceraolo Spurio
2024-05-28 18:27 ` Daniele Ceraolo Spurio
2024-05-29  8:26   ` Matthew Auld
2024-05-29 16:38     ` Daniele Ceraolo Spurio
2024-05-28 18:29 ` ✓ CI.Patch_applied: success for " Patchwork
2024-05-28 18:30 ` ✗ CI.checkpatch: warning " Patchwork
2024-05-28 18:31 ` ✗ CI.KUnit: failure " Patchwork
2024-05-29 16:07 ` ✓ CI.Patch_applied: success for Revert "drm/xe: make gt_remove use devm" (rev2) Patchwork
2024-05-29 16:07 ` ✗ CI.checkpatch: warning " Patchwork
2024-05-29 16:08 ` ✓ CI.KUnit: success " Patchwork
2024-05-29 16:20 ` ✓ CI.Build: " Patchwork
2024-05-29 16:21 ` ✗ CI.Hooks: failure " Patchwork
2024-05-29 16:22 ` ✓ CI.checksparse: success " Patchwork
2024-05-29 16:47 ` ✓ CI.BAT: " Patchwork
2024-05-29 18:17 ` ✗ 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