Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped
@ 2024-06-03 21:05 Jonathan Cavitt
  2024-06-03 22:39 ` Matthew Brost
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Jonathan Cavitt @ 2024-06-03 21:05 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, jonathan.cavitt, matthew.brost, john.c.harrison,
	stuart.summers

An exec queue should be considered reset if the guc it was running on
has had its submission state disabled, as this normally only occurs on
a reset.  So, add the condition to the reset_status guc_exec_queue_op.

Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: John Harrison <john.c.harrison@intel.com>
CC: Matthew Brost <matthew.brost@intel.com>
CC: Stuart Summers <stuart.summers@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_submit.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index d9c159e3c5320..8c0b0c70fa5ea 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1414,7 +1414,8 @@ static void guc_exec_queue_resume(struct xe_exec_queue *q)
 
 static bool guc_exec_queue_reset_status(struct xe_exec_queue *q)
 {
-	return exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
+	return guc_read_stopped(exec_queue_to_guc(q)) ||
+	       exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
 }
 
 /*
-- 
2.25.1


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

* Re: [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
@ 2024-06-03 22:39 ` Matthew Brost
  2024-06-04 15:00   ` Cavitt, Jonathan
  2024-06-04 22:00 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 11+ messages in thread
From: Matthew Brost @ 2024-06-03 22:39 UTC (permalink / raw)
  To: Jonathan Cavitt; +Cc: intel-xe, saurabhg.gupta, john.c.harrison, stuart.summers

On Mon, Jun 03, 2024 at 02:05:54PM -0700, Jonathan Cavitt wrote:
> An exec queue should be considered reset if the guc it was running on
> has had its submission state disabled, as this normally only occurs on
> a reset.  So, add the condition to the reset_status guc_exec_queue_op.
> 
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> CC: John Harrison <john.c.harrison@intel.com>
> CC: Matthew Brost <matthew.brost@intel.com>
> CC: Stuart Summers <stuart.summers@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_guc_submit.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index d9c159e3c5320..8c0b0c70fa5ea 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -1414,7 +1414,8 @@ static void guc_exec_queue_resume(struct xe_exec_queue *q)
>  
>  static bool guc_exec_queue_reset_status(struct xe_exec_queue *q)
>  {
> -	return exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
> +	return guc_read_stopped(exec_queue_to_guc(q)) ||

I haven't wrapped my head around this issue completely but will take an
in depth look shortly but this patch is not correct. We only ban exec
queues which have jobs started but not completed during GT reset whereas
this patch will report all exec queues as reset during a period of time
when GuC submission is stopped (e.g. during a GT reset all exec queues
will being reset).

Matt

> +	       exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
>  }
>  
>  /*
> -- 
> 2.25.1
> 

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

* RE: [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 22:39 ` Matthew Brost
@ 2024-06-04 15:00   ` Cavitt, Jonathan
  0 siblings, 0 replies; 11+ messages in thread
From: Cavitt, Jonathan @ 2024-06-04 15:00 UTC (permalink / raw)
  To: Brost, Matthew
  Cc: intel-xe@lists.freedesktop.org, Gupta,  saurabhg,
	Harrison, John C, Summers, Stuart, Cavitt, Jonathan

-----Original Message-----
From: Brost, Matthew <matthew.brost@intel.com> 
Sent: Monday, June 3, 2024 3:40 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com>
Subject: Re: [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped
> 
> On Mon, Jun 03, 2024 at 02:05:54PM -0700, Jonathan Cavitt wrote:
> > An exec queue should be considered reset if the guc it was running on
> > has had its submission state disabled, as this normally only occurs on
> > a reset.  So, add the condition to the reset_status guc_exec_queue_op.
> > 
> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > CC: John Harrison <john.c.harrison@intel.com>
> > CC: Matthew Brost <matthew.brost@intel.com>
> > CC: Stuart Summers <stuart.summers@intel.com>
> > ---
> >  drivers/gpu/drm/xe/xe_guc_submit.c | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> > index d9c159e3c5320..8c0b0c70fa5ea 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > @@ -1414,7 +1414,8 @@ static void guc_exec_queue_resume(struct xe_exec_queue *q)
> >  
> >  static bool guc_exec_queue_reset_status(struct xe_exec_queue *q)
> >  {
> > -	return exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
> > +	return guc_read_stopped(exec_queue_to_guc(q)) ||
> 
> I haven't wrapped my head around this issue completely but will take an
> in depth look shortly but this patch is not correct. We only ban exec
> queues which have jobs started but not completed during GT reset whereas
> this patch will report all exec queues as reset during a period of time
> when GuC submission is stopped (e.g. during a GT reset all exec queues
> will being reset).


Is there a way to check the "started" status of an exec queue?  We could use
that as an additional condition for the check, I.E.:

	if (guc_read_stopped(exec_queue_to_guc(q)) && exec_queue_started(q))
		return true;
	else if (exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q))
		return true;
	return false;

-Jonathan Cavitt


> 
> Matt
> 
> > +	       exec_queue_reset(q) || exec_queue_killed_or_banned_or_wedged(q);
> >  }
> >  
> >  /*
> > -- 
> > 2.25.1
> > 
> 

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

* ✓ CI.Patch_applied: success for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
  2024-06-03 22:39 ` Matthew Brost
@ 2024-06-04 22:00 ` Patchwork
  2024-06-04 22:00 ` ✓ CI.checkpatch: " Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:00 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 596cf447db94 drm-tip: 2024y-06m-04d-20h-11m-26s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/xe_guc_submit: Declare reset if guc stopped



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

* ✓ CI.checkpatch: success for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
  2024-06-03 22:39 ` Matthew Brost
  2024-06-04 22:00 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-06-04 22:00 ` Patchwork
  2024-06-04 22:01 ` ✓ CI.KUnit: " Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:00 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
State : success

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 7c5e8dacdc371530acdff8434c5808a8cc4dd994
Author: Jonathan Cavitt <jonathan.cavitt@intel.com>
Date:   Mon Jun 3 14:05:54 2024 -0700

    drm/xe/xe_guc_submit: Declare reset if guc stopped
    
    An exec queue should be considered reset if the guc it was running on
    has had its submission state disabled, as this normally only occurs on
    a reset.  So, add the condition to the reset_status guc_exec_queue_op.
    
    Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
    CC: John Harrison <john.c.harrison@intel.com>
    CC: Matthew Brost <matthew.brost@intel.com>
    CC: Stuart Summers <stuart.summers@intel.com>
+ /mt/dim checkpatch 596cf447db94909c4788fd612876520531e439b0 drm-intel
7c5e8dacdc37 drm/xe/xe_guc_submit: Declare reset if guc stopped



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

* ✓ CI.KUnit: success for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
                   ` (2 preceding siblings ...)
  2024-06-04 22:00 ` ✓ CI.checkpatch: " Patchwork
@ 2024-06-04 22:01 ` Patchwork
  2024-06-04 22:12 ` ✓ CI.Build: " Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:01 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
State : success

== Summary ==

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

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

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

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

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



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

* ✓ CI.Build: success for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
                   ` (3 preceding siblings ...)
  2024-06-04 22:01 ` ✓ CI.KUnit: " Patchwork
@ 2024-06-04 22:12 ` Patchwork
  2024-06-04 22:13 ` ✗ CI.Hooks: failure " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:12 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
State : success

== Summary ==

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



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

* ✗ CI.Hooks: failure for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
                   ` (4 preceding siblings ...)
  2024-06-04 22:12 ` ✓ CI.Build: " Patchwork
@ 2024-06-04 22:13 ` Patchwork
  2024-06-04 22:14 ` ✓ CI.checksparse: success " Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:13 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
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
  UPD     include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool 
  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] 11+ messages in thread

* ✓ CI.checksparse: success for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
                   ` (5 preceding siblings ...)
  2024-06-04 22:13 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-06-04 22:14 ` Patchwork
  2024-06-04 22:42 ` ✓ CI.BAT: " Patchwork
  2024-06-05  5:43 ` ✗ CI.FULL: failure " Patchwork
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:14 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
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 596cf447db94909c4788fd612876520531e439b0
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] 11+ messages in thread

* ✓ CI.BAT: success for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
                   ` (6 preceding siblings ...)
  2024-06-04 22:14 ` ✓ CI.checksparse: success " Patchwork
@ 2024-06-04 22:42 ` Patchwork
  2024-06-05  5:43 ` ✗ CI.FULL: failure " Patchwork
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-04 22:42 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
State : success

== Summary ==

CI Bug Log - changes from xe-1399-596cf447db94909c4788fd612876520531e439b0_BAT -> xe-pw-134415v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (1): bat-adlp-7 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_dsc@dsc-basic:
    - bat-adlp-7:         NOTRUN -> [SKIP][1] ([Intel XE#455])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@kms_dsc@dsc-basic.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         NOTRUN -> [DMESG-FAIL][2] ([Intel XE#324])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

  * igt@xe_evict@evict-small-cm:
    - bat-adlp-7:         NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@xe_evict@evict-small-cm.html

  * igt@xe_evict_ccs@evict-overcommit-simple:
    - bat-adlp-7:         NOTRUN -> [SKIP][4] ([Intel XE#688]) +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-simple.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
    - bat-adlp-7:         NOTRUN -> [SKIP][5] ([Intel XE#288]) +32 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html

  * igt@xe_mmap@vram:
    - bat-adlp-7:         NOTRUN -> [SKIP][6] ([Intel XE#1008])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xe2:
    - bat-adlp-7:         NOTRUN -> [SKIP][7] ([Intel XE#977])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-adlp-7:         NOTRUN -> [SKIP][8] ([Intel XE#979]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - {bat-lnl-1}:        [FAIL][9] ([Intel XE#886]) -> [PASS][10] +1 other test pass
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html

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

  [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * Linux: xe-1399-596cf447db94909c4788fd612876520531e439b0 -> xe-pw-134415v1

  IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1399-596cf447db94909c4788fd612876520531e439b0: 596cf447db94909c4788fd612876520531e439b0
  xe-pw-134415v1: 134415v1

== Logs ==

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

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

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

* ✗ CI.FULL: failure for drm/xe/xe_guc_submit: Declare reset if guc stopped
  2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
                   ` (7 preceding siblings ...)
  2024-06-04 22:42 ` ✓ CI.BAT: " Patchwork
@ 2024-06-05  5:43 ` Patchwork
  8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-06-05  5:43 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/xe_guc_submit: Declare reset if guc stopped
URL   : https://patchwork.freedesktop.org/series/134415/
State : failure

== Summary ==

CI Bug Log - changes from xe-1399-596cf447db94909c4788fd612876520531e439b0_full -> xe-pw-134415v1_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-134415v1_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-134415v1_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-134415v1_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][1] +2 other tests dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html

  * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][2] -> [FAIL][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html

  
#### Warnings ####

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [INCOMPLETE][4] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [INCOMPLETE][6] ([Intel XE#1195]) -> [DMESG-FAIL][7] +1 other test dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1:
    - shard-adlp:         [DMESG-FAIL][8] -> [FAIL][9] +1 other test fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html

  * igt@xe_pm@s3-basic-exec:
    - shard-adlp:         [INCOMPLETE][10] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358]) -> [DMESG-FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@xe_pm@s3-basic-exec.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_fbcon_fbt@psr-suspend:
    - {shard-lnl}:        NOTRUN -> [FAIL][12]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_psr@pr-no-drrs:
    - {shard-lnl}:        NOTRUN -> [INCOMPLETE][13] +2 other tests incomplete
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-3/igt@kms_psr@pr-no-drrs.html

  * igt@kms_psr@psr-sprite-plane-move:
    - {shard-lnl}:        [PASS][14] -> [INCOMPLETE][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-4/igt@kms_psr@psr-sprite-plane-move.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-7/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_psr@psr-suspend@edp-1:
    - {shard-lnl}:        [DMESG-FAIL][16] -> [FAIL][17] +1 other test fail
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-8/igt@kms_psr@psr-suspend@edp-1.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-5/igt@kms_psr@psr-suspend@edp-1.html

  * igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system:
    - {shard-lnl}:        [FAIL][18] -> [DMESG-FAIL][19]
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-5/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-6/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-read:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#1125] / [Intel XE#1201])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@intel_hwmon@hwmon-read.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg2-set2:     [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1195] / [Intel XE#1602])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

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

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][26] ([Intel XE#1033]) +1 other test dmesg-fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#1124] / [Intel XE#1201]) +13 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

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

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#367])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#787]) +17 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#1252])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#787]) +34 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +9 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     NOTRUN -> [FAIL][40] ([Intel XE#1178]) +1 other test fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#307])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x512.html
    - shard-adlp:         NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-64x64:
    - shard-dg2-set2:     [PASS][44] -> [DMESG-FAIL][45] ([Intel XE#1602]) +4 other tests dmesg-fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-64x64.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-dg2-set2:     [PASS][46] -> [DMESG-WARN][47] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-433/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][48] ([Intel XE#1214] / [Intel XE#282]) +13 other tests dmesg-warn
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#309]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-dg2-set2:     [PASS][50] -> [DMESG-WARN][51] ([Intel XE#282])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#323]) +2 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#323])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#1135] / [Intel XE#1201])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#310]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@2x-nonexisting-fb@ac-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][57] -> [DMESG-WARN][58] ([Intel XE#1214] / [Intel XE#1602]) +64 other tests dmesg-warn
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@kms_flip@2x-nonexisting-fb@ac-hdmi-a6-dp4.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_flip@2x-nonexisting-fb@ac-hdmi-a6-dp4.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
    - shard-adlp:         [PASS][59] -> [FAIL][60] ([Intel XE#1874])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#651]) +24 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#651]) +4 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#653]) +35 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#656]) +15 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#653]) +5 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][66] ([Intel XE#616]) +3 other tests fail
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_plane_multiple@tiling-none@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][67] -> [DMESG-FAIL][68] ([Intel XE#1602] / [Intel XE#1638]) +1 other test dmesg-fail
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@kms_plane_multiple@tiling-none@pipe-a-hdmi-a-6.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_plane_multiple@tiling-none@pipe-a-hdmi-a-6.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#870])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#1211])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_pm_rpm@cursor-dpms.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-adlp:         NOTRUN -> [SKIP][71] ([Intel XE#1201]) +2 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#1122] / [Intel XE#1201])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#929]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#929]) +16 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_rmfb@close-fd:
    - shard-dg2-set2:     NOTRUN -> [FAIL][75] ([Intel XE#294]) +2 other tests fail
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_rmfb@close-fd.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#1127] / [Intel XE#1201])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#327])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#327])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#330])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-dg2-set2:     NOTRUN -> [FAIL][80] ([Intel XE#771] / [Intel XE#899])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][81] ([Intel XE#899])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html

  * igt@kms_vrr@flip-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#756])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#756])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#1123] / [Intel XE#1201])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_evict@evict-beng-large-multi-vm:
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#261])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_evict@evict-beng-large-multi-vm.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][88] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_evict@evict-small-multi-vm-cm:
    - shard-adlp:         NOTRUN -> [SKIP][89] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_evict@evict-small-multi-vm-cm.html

  * igt@xe_exec_balancer@many-cm-virtual-rebind:
    - shard-dg2-set2:     [PASS][90] -> [DMESG-FAIL][91] ([Intel XE#1069] / [Intel XE#1602] / [Intel XE#358])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_exec_balancer@many-cm-virtual-rebind.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_exec_balancer@many-cm-virtual-rebind.html

  * igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][92] -> [DMESG-WARN][93] ([Intel XE#1214] / [Intel XE#1602] / [Intel XE#358]) +4 other tests dmesg-warn
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
    - shard-dg2-set2:     [PASS][94] -> [DMESG-FAIL][95] ([Intel XE#1602] / [Intel XE#1638] / [Intel XE#358])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#1392]) +4 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#1201] / [Intel XE#288]) +26 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-463/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_threads@threads-cm-fd-userptr-rebind:
    - shard-dg2-set2:     [PASS][99] -> [FAIL][100] ([Intel XE#1069])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_exec_threads@threads-cm-fd-userptr-rebind.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_exec_threads@threads-cm-fd-userptr-rebind.html

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

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-adlp:         NOTRUN -> [SKIP][102] ([Intel XE#1201] / [Intel XE#366])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@xe_pm@d3cold-multiple-execs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#366])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-436/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@d3hot-basic-exec:
    - shard-adlp:         NOTRUN -> [FAIL][104] ([Intel XE#355])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_pm@d3hot-basic-exec.html

  * igt@xe_pm@s3-basic:
    - shard-dg2-set2:     [PASS][105] -> [DMESG-FAIL][106] ([Intel XE#1638])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_pm@s3-basic.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_pm@s3-basic.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][107] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-464/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-adlp:         [PASS][108] -> [FAIL][109] ([Intel XE#958])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-9/igt@xe_pm_residency@toggle-gt-c6.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#1201] / [Intel XE#944])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][111] ([Intel XE#1201] / [Intel XE#944])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_render_copy@render-full:
    - shard-dg2-set2:     [PASS][112] -> [DMESG-FAIL][113] ([Intel XE#1602] / [Intel XE#358]) +11 other tests dmesg-fail
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_render_copy@render-full.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_render_copy@render-full.html

  * igt@xe_vm@munmap-style-unbind-userptr-inval-many-front:
    - shard-dg2-set2:     [PASS][114] -> [DMESG-FAIL][115] ([Intel XE#358]) +1 other test dmesg-fail
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_vm@munmap-style-unbind-userptr-inval-many-front.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_vm@munmap-style-unbind-userptr-inval-many-front.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y:
    - shard-adlp:         [DMESG-WARN][116] ([Intel XE#1214] / [Intel XE#324]) -> [PASS][117] +2 other tests pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-x:
    - shard-adlp:         [DMESG-WARN][118] ([Intel XE#1033] / [Intel XE#1214]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-x.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-x.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-dg2-set2:     [DMESG-WARN][120] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
    - shard-dg2-set2:     [DMESG-WARN][122] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][123] +2 other tests pass
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
    - {shard-lnl}:        [FAIL][124] -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html

  * igt@kms_cursor_legacy@forked-bo@all-pipes:
    - shard-dg2-set2:     [INCOMPLETE][126] ([Intel XE#1195]) -> [PASS][127] +5 other tests pass
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_cursor_legacy@forked-bo@all-pipes.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-463/igt@kms_cursor_legacy@forked-bo@all-pipes.html

  * igt@kms_cursor_legacy@torture-bo@pipe-a:
    - {shard-lnl}:        [DMESG-WARN][128] ([Intel XE#877]) -> [PASS][129] +1 other test pass
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-1/igt@kms_cursor_legacy@torture-bo@pipe-a.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-4/igt@kms_cursor_legacy@torture-bo@pipe-a.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - {shard-lnl}:        [FAIL][130] ([Intel XE#480] / [Intel XE#886]) -> [PASS][131] +1 other test pass
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x:
    - shard-adlp:         [FAIL][132] ([Intel XE#1874]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][134] ([Intel XE#361]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - {shard-lnl}:        [SKIP][136] ([Intel XE#1211]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-8/igt@kms_pm_rpm@modeset-lpsp.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-5/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate:
    - shard-adlp:         [FAIL][138] ([Intel XE#1069]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html

  * igt@xe_gt_freq@freq_fixed_exec:
    - shard-dg2-set2:     [FAIL][140] ([Intel XE#1414]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
    - shard-adlp:         [FAIL][142] ([Intel XE#1414]) -> [PASS][143]
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-6/igt@xe_gt_freq@freq_fixed_exec.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_gt_freq@freq_fixed_exec.html

  * igt@xe_gt_freq@freq_low_max:
    - {shard-lnl}:        [FAIL][144] ([Intel XE#1045]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-4/igt@xe_gt_freq@freq_low_max.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-2/igt@xe_gt_freq@freq_low_max.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-dg2-set2:     [INCOMPLETE][146] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-436/igt@xe_pm@s2idle-d3hot-basic-exec.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_pm@s2idle-d3hot-basic-exec.html

  * igt@xe_pm@s4-exec-after:
    - shard-adlp:         [ABORT][148] ([Intel XE#1358]) -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-9/igt@xe_pm@s4-exec-after.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@xe_pm@s4-exec-after.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - {shard-lnl}:        [ABORT][150] ([Intel XE#1794]) -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-with-page-flip-events:
    - shard-adlp:         [DMESG-WARN][152] ([Intel XE#1033] / [Intel XE#1214] / [Intel XE#324]) -> [DMESG-WARN][153] ([Intel XE#1033] / [Intel XE#1214])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][155] ([Intel XE#316]) +2 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#316]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [FAIL][158] ([Intel XE#1231]) -> [DMESG-FAIL][159] ([Intel XE#324])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#607]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#607])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][163] ([Intel XE#610])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][165] ([Intel XE#1124]) +7 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#610]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#610])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#1124]) -> [SKIP][169] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][170] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][171] ([Intel XE#367]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#367]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#367])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][175] ([Intel XE#787]) +48 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][177] ([Intel XE#1252]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][178] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][179] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][181] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1252]) -> [SKIP][183] ([Intel XE#1201] / [Intel XE#1252])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#787]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-dg2-set2:     [SKIP][186] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][187] ([Intel XE#306]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_chamelium_color@ctm-0-50.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#373]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_chamelium_frames@dp-crc-fast.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][191] ([Intel XE#373]) +7 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     [FAIL][192] ([Intel XE#1178]) -> [DMESG-FAIL][193] ([Intel XE#1602])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@kms_content_protection@atomic.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#307]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#307])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#308]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#308])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x170.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][199] ([Intel XE#308])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-dg2-set2:     [DMESG-WARN][200] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][201] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [DMESG-WARN][202] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][203] ([Intel XE#282]) +4 other tests dmesg-warn
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@forked-bo:
    - shard-dg2-set2:     [INCOMPLETE][204] ([Intel XE#1195]) -> [DMESG-WARN][205] ([Intel XE#1214] / [Intel XE#282])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_cursor_legacy@forked-bo.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-463/igt@kms_cursor_legacy@forked-bo.html

  * igt@kms_cursor_legacy@single-bo@all-pipes:
    - shard-dg2-set2:     [DMESG-WARN][206] ([Intel XE#282]) -> [DMESG-WARN][207] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_cursor_legacy@single-bo@all-pipes.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_cursor_legacy@single-bo@all-pipes.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#1201] / [i915#3804]) -> [SKIP][209] ([i915#3804])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][210] ([Intel XE#701]) -> [SKIP][211] ([Intel XE#1201] / [Intel XE#701])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#1135]) -> [SKIP][213] ([Intel XE#1135] / [Intel XE#1201])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_feature_discovery@psr1.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [DMESG-FAIL][214] -> [INCOMPLETE][215] ([Intel XE#1195] / [Intel XE#927])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-4/igt@kms_flip@flip-vs-suspend.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][216] ([Intel XE#1195]) -> [DMESG-WARN][217] ([Intel XE#1162] / [Intel XE#1214])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     [SKIP][218] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][219] ([Intel XE#455]) +18 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     [SKIP][220] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][221] ([Intel XE#651]) +20 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-adlp:         [DMESG-FAIL][222] ([Intel XE#1162] / [Intel XE#1191]) -> [INCOMPLETE][223] ([Intel XE#1195] / [Intel XE#927])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-dg2-set2:     [SKIP][224] ([Intel XE#651]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][226] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][227] ([Intel XE#653]) +22 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#658]) -> [SKIP][229] ([Intel XE#1201] / [Intel XE#658])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-rte:
    - shard-dg2-set2:     [SKIP][230] ([Intel XE#653]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#653]) +15 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-rte.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-rte.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-adlp:         [DMESG-FAIL][232] -> [DMESG-FAIL][233] ([Intel XE#1162] / [Intel XE#1191])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1:
    - shard-adlp:         [FAIL][234] -> [DMESG-FAIL][235] ([Intel XE#1162] / [Intel XE#1191])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][237] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][238] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][239] ([Intel XE#498]) +2 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2-set2:     [SKIP][240] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][241] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/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][242] ([Intel XE#498]) -> [SKIP][243] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][244] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][245] ([Intel XE#305]) +2 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][246] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][247] ([Intel XE#305] / [Intel XE#455]) +1 other test skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][249] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][250] ([Intel XE#305]) -> [SKIP][251] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][252] ([Intel XE#455]) -> [SKIP][253] ([Intel XE#1201] / [Intel XE#455]) +8 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][254] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][255] ([Intel XE#870])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#908]) -> [SKIP][257] ([Intel XE#1201] / [Intel XE#908])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         [SKIP][258] ([Intel XE#1201]) -> [SKIP][259] ([Intel XE#1201] / [Intel XE#2007])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-2/igt@kms_pm_dc@deep-pkgc.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-2/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2-set2:     [SKIP][260] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][261] ([Intel XE#929]) +13 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][263] ([Intel XE#1122]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][264] ([Intel XE#929]) -> [SKIP][265] ([Intel XE#1201] / [Intel XE#929]) +7 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_psr@psr-dpms.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_psr@psr-dpms.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2-set2:     [SKIP][266] ([Intel XE#1149]) -> [SKIP][267] ([Intel XE#1149] / [Intel XE#1201])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#1127]) -> [SKIP][269] ([Intel XE#1127] / [Intel XE#1201])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][270] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][271] ([Intel XE#327])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2-set2:     [SKIP][272] ([Intel XE#327]) -> [SKIP][273] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][274] ([Intel XE#1500]) -> [SKIP][275] ([Intel XE#1201] / [Intel XE#1500])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2-set2:     [SKIP][276] ([Intel XE#756]) -> [SKIP][277] ([Intel XE#1201] / [Intel XE#756])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][279] ([Intel XE#756])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][281] ([Intel XE#1091])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@sriov_basic@bind-unbind-vf.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@sriov_basic@bind-unbind-vf.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][282] ([Intel XE#1123]) -> [SKIP][283] ([Intel XE#1123] / [Intel XE#1201])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     [SKIP][284] ([Intel XE#1126]) -> [SKIP][285] ([Intel XE#1126] / [Intel XE#1201])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - shard-dg2-set2:     [FAIL][286] ([Intel XE#1600]) -> [FAIL][287] ([Intel XE#1041])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_evict@evict-beng-large-multi-vm-cm.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_evict@evict-beng-large-multi-vm-cm.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-dg2-set2:     [TIMEOUT][288] ([Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][289] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#1602] / [Intel XE#392])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_evict@evict-beng-mixed-threads-large.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][290] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][291] ([Intel XE#1473] / [Intel XE#392])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [INCOMPLETE][292] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][293] ([Intel XE#1473] / [Intel XE#392])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-436/igt@xe_evict@evict-threads-large.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-466/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch:
    - shard-dg2-set2:     [SKIP][294] ([Intel XE#288]) -> [SKIP][295] ([Intel XE#1201] / [Intel XE#288]) +11 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
    - shard-dg2-set2:     [SKIP][296] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][297] ([Intel XE#288]) +18 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html

  * igt@xe_live_ktest@xe_migrate:
    - shard-dg2-set2:     [SKIP][298] ([Intel XE#1192]) -> [SKIP][299] ([Intel XE#1192] / [Intel XE#1201])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_live_ktest@xe_migrate.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][300] ([Intel XE#1201] / [Intel XE#512]) -> [SKIP][301] ([Intel XE#512])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@xe_mmap@small-bar.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_mmap@small-bar.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][302] ([Intel XE#1337]) -> [SKIP][303] ([Intel XE#1201] / [Intel XE#1337])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [FAIL][304] ([Intel XE#1173]) -> [DMESG-FAIL][305] ([Intel XE#1602]) +1 other test dmesg-fail
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-463/igt@xe_peer2peer@read.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][306] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][307] ([Intel XE#366])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#366]) -> [SKIP][309] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s3-mocs:
    - shard-adlp:         [DMESG-FAIL][310] -> [DMESG-FAIL][311] ([Intel XE#1162])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-2/igt@xe_pm@s3-mocs.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-4/igt@xe_pm@s3-mocs.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [DMESG-WARN][312] ([Intel XE#1162]) -> [DMESG-WARN][313] ([Intel XE#1162] / [Intel XE#1214])
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-435/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-adlp:         [DMESG-FAIL][314] -> [INCOMPLETE][315] ([Intel XE#1195]) +2 other tests incomplete
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-2/igt@xe_pm@s3-vm-bind-unbind-all.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-9/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-adlp:         [DMESG-WARN][316] ([Intel XE#1214]) -> [INCOMPLETE][317] ([Intel XE#1195] / [Intel XE#1358])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-adlp-8/igt@xe_pm@s4-multiple-execs.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][318] ([Intel XE#579]) -> [SKIP][319] ([Intel XE#1201] / [Intel XE#579])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     [SKIP][320] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][321] ([Intel XE#944]) +2 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1399-596cf447db94909c4788fd612876520531e439b0/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134415v1/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html

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

  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
  [Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
  [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
  [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
  [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1191
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [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#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
  [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#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
  [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414
  [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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1602]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1602
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
  [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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
  [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#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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/355
  [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#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#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#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [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
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


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

  * Linux: xe-1399-596cf447db94909c4788fd612876520531e439b0 -> xe-pw-134415v1

  IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1399-596cf447db94909c4788fd612876520531e439b0: 596cf447db94909c4788fd612876520531e439b0
  xe-pw-134415v1: 134415v1

== Logs ==

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

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

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

end of thread, other threads:[~2024-06-05  5:43 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 21:05 [PATCH] drm/xe/xe_guc_submit: Declare reset if guc stopped Jonathan Cavitt
2024-06-03 22:39 ` Matthew Brost
2024-06-04 15:00   ` Cavitt, Jonathan
2024-06-04 22:00 ` ✓ CI.Patch_applied: success for " Patchwork
2024-06-04 22:00 ` ✓ CI.checkpatch: " Patchwork
2024-06-04 22:01 ` ✓ CI.KUnit: " Patchwork
2024-06-04 22:12 ` ✓ CI.Build: " Patchwork
2024-06-04 22:13 ` ✗ CI.Hooks: failure " Patchwork
2024-06-04 22:14 ` ✓ CI.checksparse: success " Patchwork
2024-06-04 22:42 ` ✓ CI.BAT: " Patchwork
2024-06-05  5:43 ` ✗ 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