public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p
@ 2026-02-23 16:35 Zbigniew Kempczyński
  2026-02-23 21:28 ` Jan Maslak
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2026-02-23 16:35 UTC (permalink / raw)
  To: igt-dev; +Cc: Zbigniew Kempczyński, Jan Maślak

Extend rendercopy to support Xe3p platforms like NVL-P. This requires
reassembling xe2 shader and increasing urb size.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Jan Maślak <jan.maslak@intel.com>
---
 lib/i915/shaders/ps/xe3p_render_copy.asm |  8 +++++++
 lib/intel_batchbuffer.c                  |  2 ++
 lib/rendercopy.h                         |  4 ++++
 lib/rendercopy_gen9.c                    | 28 +++++++++++++++++++++---
 4 files changed, 39 insertions(+), 3 deletions(-)
 create mode 100644 lib/i915/shaders/ps/xe3p_render_copy.asm

diff --git a/lib/i915/shaders/ps/xe3p_render_copy.asm b/lib/i915/shaders/ps/xe3p_render_copy.asm
new file mode 100644
index 0000000000..fea5c5c01e
--- /dev/null
+++ b/lib/i915/shaders/ps/xe3p_render_copy.asm
@@ -0,0 +1,8 @@
+L0:
+(W)     mad (16|M0)              acc0.0<1>:f   r6.0<0;0>:f       r1.0<1;0>:f       r6.6<0>:f
+(W)     mad (16|M0)              r113.0<1>:f   acc0.0<1;0>:f     r1.0<1;0>:f       r6.1<0>:f
+(W)     mad (16|M0)              acc0.0<1>:f   r6.3<0;0>:f       r1.0<1;0>:f       r6.4<0>:f
+(W)     mad (16|M0)              r114.0<1>:f   acc0.0<1;0>:f     r2.0<1;0>:f       r6.5<0>:f
+(W)     send.smpl (16|M0)        r12      r113  null:0  0x0            0x04420001           {F@1,$0} // wr:2+0, rd:4; simd16 sample:u,v,r,ai,mlod using sampler index 0
+(W)     send.rc (16|M0)          null     r12  null:0  0x0            0x08031400           {EOT,$0} // wr:4+0, rd:0; render write  last render target select to bti[0].rti[0]
+L96:
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 3b25a385b7..b095065746 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -669,6 +669,8 @@ igt_render_copyfunc_t igt_get_render_copyfunc(int fd)
 		copy = mtl_render_copyfunc;
 	else if (IS_DG2(devid))
 		copy = gen12p71_render_copyfunc;
+	else if (intel_gen(devid) >= 35)
+		copy = xe3p_render_copyfunc;
 	else if (intel_gen(devid) >= 20)
 		copy = xe2_render_copyfunc;
 	else if (IS_GEN12(devid))
diff --git a/lib/rendercopy.h b/lib/rendercopy.h
index 3733e8a09f..570797c490 100644
--- a/lib/rendercopy.h
+++ b/lib/rendercopy.h
@@ -47,6 +47,10 @@ void xe2_render_copyfunc(struct intel_bb *ibb,
 			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
 			 uint32_t width, uint32_t height,
 			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
+void xe3p_render_copyfunc(struct intel_bb *ibb,
+			  struct intel_buf *src, uint32_t src_x, uint32_t src_y,
+			  uint32_t width, uint32_t height,
+			  struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
 void gen12_render_copyfunc(struct intel_bb *ibb,
 			   struct intel_buf *src, uint32_t src_x, uint32_t src_y,
 			   uint32_t width, uint32_t height,
diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
index e6e5b82148..d44988010a 100644
--- a/lib/rendercopy_gen9.c
+++ b/lib/rendercopy_gen9.c
@@ -146,6 +146,15 @@ static const uint32_t xe2_render_copy[][4] = {
 	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
 };
 
+static const uint32_t xe3p_render_copy[][4] = {
+	{ 0x8010005b, 0x200002a0, 0x02020604, 0x06640104 },
+	{ 0x8010005b, 0x710402a8, 0x02022000, 0x06140104 },
+	{ 0x8010005b, 0x200002a0, 0x02020634, 0x06440104 },
+	{ 0x8010005b, 0x720402a8, 0x02022000, 0x06540204 },
+	{ 0x80122031, 0x0c240000, 0x20027114, 0x00800000 },
+	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
+};
+
 static uint32_t lnl_compression_format(const struct intel_buf *buf)
 {
 	switch (buf->bpp) {
@@ -737,7 +746,7 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
 static void
 gen7_emit_urb(struct intel_bb *ibb) {
 	/* XXX: Min valid values from mesa */
-	const int vs_entries = 64;
+	const int vs_entries = intel_gen(ibb->devid) >= 35 ? 128 : 64;
 	const int vs_size = 2;
 	const int vs_start = 4;
 
@@ -1395,13 +1404,26 @@ void xe2_render_copyfunc(struct intel_bb *ibb,
 			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
 			 uint32_t width, uint32_t height,
 			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
+{
+	_gen9_render_op(ibb, src, src_x, src_y,
+			width, height, dst, dst_x, dst_y,
+			NULL,
+			NULL,
+			xe2_render_copy,
+			sizeof(xe2_render_copy));
+}
+
+void xe3p_render_copyfunc(struct intel_bb *ibb,
+			  struct intel_buf *src, uint32_t src_x, uint32_t src_y,
+			  uint32_t width, uint32_t height,
+			  struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
 {
 	_gen9_render_op(ibb, src, src_x, src_y,
 			  width, height, dst, dst_x, dst_y,
 			  NULL,
 			  NULL,
-			  xe2_render_copy,
-			  sizeof(xe2_render_copy));
+			  xe3p_render_copy,
+			  sizeof(xe3p_render_copy));
 }
 
 void mtl_render_copyfunc(struct intel_bb *ibb,
-- 
2.43.0


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

* Re: [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p
  2026-02-23 16:35 [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p Zbigniew Kempczyński
@ 2026-02-23 21:28 ` Jan Maslak
  2026-02-23 22:19 ` ✗ i915.CI.BAT: failure for " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Jan Maslak @ 2026-02-23 21:28 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

On Mon, Feb 23, 2026 at 05:35:45PM +0100, Zbigniew Kempczyński wrote:
> Extend rendercopy to support Xe3p platforms like NVL-P. This requires
> reassembling xe2 shader and increasing urb size.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Jan Maślak <jan.maslak@intel.com>
> ---
>  lib/i915/shaders/ps/xe3p_render_copy.asm |  8 +++++++
>  lib/intel_batchbuffer.c                  |  2 ++
>  lib/rendercopy.h                         |  4 ++++
>  lib/rendercopy_gen9.c                    | 28 +++++++++++++++++++++---
>  4 files changed, 39 insertions(+), 3 deletions(-)
>  create mode 100644 lib/i915/shaders/ps/xe3p_render_copy.asm
> 
> diff --git a/lib/i915/shaders/ps/xe3p_render_copy.asm b/lib/i915/shaders/ps/xe3p_render_copy.asm
> new file mode 100644
> index 0000000000..fea5c5c01e
> --- /dev/null
> +++ b/lib/i915/shaders/ps/xe3p_render_copy.asm
> @@ -0,0 +1,8 @@
> +L0:
> +(W)     mad (16|M0)              acc0.0<1>:f   r6.0<0;0>:f       r1.0<1;0>:f       r6.6<0>:f
> +(W)     mad (16|M0)              r113.0<1>:f   acc0.0<1;0>:f     r1.0<1;0>:f       r6.1<0>:f
> +(W)     mad (16|M0)              acc0.0<1>:f   r6.3<0;0>:f       r1.0<1;0>:f       r6.4<0>:f
> +(W)     mad (16|M0)              r114.0<1>:f   acc0.0<1;0>:f     r2.0<1;0>:f       r6.5<0>:f
> +(W)     send.smpl (16|M0)        r12      r113  null:0  0x0            0x04420001           {F@1,$0} // wr:2+0, rd:4; simd16 sample:u,v,r,ai,mlod using sampler index 0
> +(W)     send.rc (16|M0)          null     r12  null:0  0x0            0x08031400           {EOT,$0} // wr:4+0, rd:0; render write  last render target select to bti[0].rti[0]
> +L96:
> diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
> index 3b25a385b7..b095065746 100644
> --- a/lib/intel_batchbuffer.c
> +++ b/lib/intel_batchbuffer.c
> @@ -669,6 +669,8 @@ igt_render_copyfunc_t igt_get_render_copyfunc(int fd)
>  		copy = mtl_render_copyfunc;
>  	else if (IS_DG2(devid))
>  		copy = gen12p71_render_copyfunc;
> +	else if (intel_gen(devid) >= 35)
> +		copy = xe3p_render_copyfunc;
>  	else if (intel_gen(devid) >= 20)
>  		copy = xe2_render_copyfunc;
>  	else if (IS_GEN12(devid))
> diff --git a/lib/rendercopy.h b/lib/rendercopy.h
> index 3733e8a09f..570797c490 100644
> --- a/lib/rendercopy.h
> +++ b/lib/rendercopy.h
> @@ -47,6 +47,10 @@ void xe2_render_copyfunc(struct intel_bb *ibb,
>  			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
>  			 uint32_t width, uint32_t height,
>  			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
> +void xe3p_render_copyfunc(struct intel_bb *ibb,
> +			  struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> +			  uint32_t width, uint32_t height,
> +			  struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
>  void gen12_render_copyfunc(struct intel_bb *ibb,
>  			   struct intel_buf *src, uint32_t src_x, uint32_t src_y,
>  			   uint32_t width, uint32_t height,
> diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
> index e6e5b82148..d44988010a 100644
> --- a/lib/rendercopy_gen9.c
> +++ b/lib/rendercopy_gen9.c
> @@ -146,6 +146,15 @@ static const uint32_t xe2_render_copy[][4] = {
>  	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
>  };
>  
> +static const uint32_t xe3p_render_copy[][4] = {
> +	{ 0x8010005b, 0x200002a0, 0x02020604, 0x06640104 },
> +	{ 0x8010005b, 0x710402a8, 0x02022000, 0x06140104 },
> +	{ 0x8010005b, 0x200002a0, 0x02020634, 0x06440104 },
> +	{ 0x8010005b, 0x720402a8, 0x02022000, 0x06540204 },
> +	{ 0x80122031, 0x0c240000, 0x20027114, 0x00800000 },
> +	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
> +};
> +
>  static uint32_t lnl_compression_format(const struct intel_buf *buf)
>  {
>  	switch (buf->bpp) {
> @@ -737,7 +746,7 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
>  static void
>  gen7_emit_urb(struct intel_bb *ibb) {
>  	/* XXX: Min valid values from mesa */
> -	const int vs_entries = 64;
> +	const int vs_entries = intel_gen(ibb->devid) >= 35 ? 128 : 64;
>  	const int vs_size = 2;
>  	const int vs_start = 4;
>  
> @@ -1395,13 +1404,26 @@ void xe2_render_copyfunc(struct intel_bb *ibb,
>  			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
>  			 uint32_t width, uint32_t height,
>  			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
> +{
> +	_gen9_render_op(ibb, src, src_x, src_y,
> +			width, height, dst, dst_x, dst_y,
> +			NULL,
> +			NULL,
> +			xe2_render_copy,
> +			sizeof(xe2_render_copy));
> +}
> +
> +void xe3p_render_copyfunc(struct intel_bb *ibb,
> +			  struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> +			  uint32_t width, uint32_t height,
> +			  struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
>  {
>  	_gen9_render_op(ibb, src, src_x, src_y,
>  			  width, height, dst, dst_x, dst_y,
>  			  NULL,
>  			  NULL,
> -			  xe2_render_copy,
> -			  sizeof(xe2_render_copy));
> +			  xe3p_render_copy,
> +			  sizeof(xe3p_render_copy));
>  }
>  
>  void mtl_render_copyfunc(struct intel_bb *ibb,
> -- 
> 2.43.0
> 

LGTM,
Reviewed-by: Jan Maslak <jan.maslak@intel.com>

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

* ✗ i915.CI.BAT: failure for lib/rendercopy: Alter pipeline and add shader for Xe3p
  2026-02-23 16:35 [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p Zbigniew Kempczyński
  2026-02-23 21:28 ` Jan Maslak
@ 2026-02-23 22:19 ` Patchwork
  2026-02-24  7:37   ` Zbigniew Kempczyński
  2026-02-23 22:34 ` ✓ Xe.CI.BAT: success " Patchwork
  2026-02-24 13:35 ` ✗ Xe.CI.FULL: failure " Patchwork
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2026-02-23 22:19 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: lib/rendercopy: Alter pipeline and add shader for Xe3p
URL   : https://patchwork.freedesktop.org/series/161991/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8766 -> IGTPW_14597
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14597 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14597, 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.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/index.html

Participating hosts (43 -> 41)
------------------------------

  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

  Here are the unknown changes that may have been introduced in IGTPW_14597:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pipe_crc_basic@read-crc:
    - fi-cfl-8109u:       [PASS][1] -> [DMESG-WARN][2] +48 other tests dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8766/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html

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

  Here are the changes found in IGTPW_14597 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-dg2-8:          [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8766/bat-dg2-8/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/bat-dg2-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-6:         [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8766/bat-arls-6/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/bat-arls-6/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-jsl-1:          [DMESG-FAIL][7] ([i915#15394]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8766/bat-jsl-1/igt@i915_selftest@live.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/bat-jsl-1/igt@i915_selftest@live.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#15394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15394


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8766 -> IGTPW_14597

  CI-20190529: 20190529
  CI_DRM_18022: 45a3045fc0dc46a893cb8bbe304afafd4120c904 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14597: 6a89e69be222393d3dd2f894a914c79f78f612ca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8766: 8766

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/index.html

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

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

* ✓ Xe.CI.BAT: success for lib/rendercopy: Alter pipeline and add shader for Xe3p
  2026-02-23 16:35 [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p Zbigniew Kempczyński
  2026-02-23 21:28 ` Jan Maslak
  2026-02-23 22:19 ` ✗ i915.CI.BAT: failure for " Patchwork
@ 2026-02-23 22:34 ` Patchwork
  2026-02-24 13:35 ` ✗ Xe.CI.FULL: failure " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-23 22:34 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: lib/rendercopy: Alter pipeline and add shader for Xe3p
URL   : https://patchwork.freedesktop.org/series/161991/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8766_BAT -> XEIGTPW_14597_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  Additional (1): bat-bmg-3 
  Missing    (1): bat-wcl-1 

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

  Here are the changes found in XEIGTPW_14597_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
    - bat-bmg-3:          NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html

  
#### Possible fixes ####

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [FAIL][2] ([Intel XE#6519]) -> [PASS][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/bat-dg2-oem2/igt@xe_waitfence@engine.html

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [FAIL][4] ([Intel XE#6520]) -> [PASS][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/bat-dg2-oem2/igt@xe_waitfence@reltime.html

  
  [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
  [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
  [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566


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

  * IGT: IGT_8766 -> IGTPW_14597

  IGTPW_14597: 6a89e69be222393d3dd2f894a914c79f78f612ca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8766: 8766
  xe-4591-45a3045fc0dc46a893cb8bbe304afafd4120c904: 45a3045fc0dc46a893cb8bbe304afafd4120c904

== Logs ==

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

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

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

* Re: ✗ i915.CI.BAT: failure for lib/rendercopy: Alter pipeline and add shader for Xe3p
  2026-02-23 22:19 ` ✗ i915.CI.BAT: failure for " Patchwork
@ 2026-02-24  7:37   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2026-02-24  7:37 UTC (permalink / raw)
  To: igt-dev

On Mon, Feb 23, 2026 at 10:19:04PM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  lib/rendercopy: Alter pipeline and add shader for Xe3p          
>    URL:     https://patchwork.freedesktop.org/series/161991/                
>    State:   failure                                                         
>    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/index.html 
> 
>                CI Bug Log - changes from IGT_8766 -> IGTPW_14597
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_14597 absolutely need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_14597, 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.
> 
>    External URL:
>    https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14597/index.html
> 
> Participating hosts (43 -> 41)
> 
>    Missing (2): bat-dg2-13 fi-snb-2520m
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in IGTPW_14597:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@kms_pipe_crc_basic@read-crc:
>           * fi-cfl-8109u: PASS -> DMESG-WARN +48 other tests dmesg-warn

Change is unrelated to above dmesg warning.

--
Zbigniew

> 
> Known issues
> 
>    Here are the changes found in IGTPW_14597 that come from known issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@i915_selftest@live:
> 
>           * bat-dg2-8: PASS -> DMESG-FAIL (i915#12061) +1 other test
>             dmesg-fail
>      * igt@i915_selftest@live@workarounds:
> 
>           * bat-arls-6: PASS -> DMESG-FAIL (i915#12061) +1 other test
>             dmesg-fail
> 
>     Possible fixes
> 
>      * igt@i915_selftest@live:
>           * bat-jsl-1: DMESG-FAIL (i915#15394) -> PASS +1 other test pass
> 
> Build changes
> 
>      * CI: CI-20190529 -> None
>      * IGT: IGT_8766 -> IGTPW_14597
> 
>    CI-20190529: 20190529
>    CI_DRM_18022: 45a3045fc0dc46a893cb8bbe304afafd4120c904 @
>    git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_14597: 6a89e69be222393d3dd2f894a914c79f78f612ca @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    IGT_8766: 8766

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

* ✗ Xe.CI.FULL: failure for lib/rendercopy: Alter pipeline and add shader for Xe3p
  2026-02-23 16:35 [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p Zbigniew Kempczyński
                   ` (2 preceding siblings ...)
  2026-02-23 22:34 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-02-24 13:35 ` Patchwork
  2026-02-24 14:44   ` Zbigniew Kempczyński
  3 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2026-02-24 13:35 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: lib/rendercopy: Alter pipeline and add shader for Xe3p
URL   : https://patchwork.freedesktop.org/series/161991/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8766_FULL -> XEIGTPW_14597_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_14597_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_14597_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 (2 -> 2)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in XEIGTPW_14597_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@core_hotunplug@hotreplug:
    - shard-bmg:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-9/igt@core_hotunplug@hotreplug.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-8/igt@core_hotunplug@hotreplug.html

  * igt@fbdev@eof:
    - shard-bmg:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@fbdev@eof.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@fbdev@eof.html

  * igt@xe_exec_system_allocator@many-64k-mmap-shared-remap:
    - shard-bmg:          [PASS][5] -> [DMESG-WARN][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-6/igt@xe_exec_system_allocator@many-64k-mmap-shared-remap.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-shared-remap.html

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

  Here are the changes found in XEIGTPW_14597_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#3157])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2327])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#610])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#2191])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#2887]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#3432])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2652]) +12 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#306])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-1/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_frames@hdmi-crc-planes-random:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#373]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_chamelium_frames@hdmi-crc-planes-random.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2252]) +4 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_color@invalid-ctm-matrix-sizes:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#6703]) +12 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_color@invalid-ctm-matrix-sizes.html

  * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [FAIL][21] ([Intel XE#7305]) +9 other tests fail
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-a-plane-0.html

  * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-1:
    - shard-bmg:          NOTRUN -> [FAIL][22] ([Intel XE#3304])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-1.html

  * igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2320]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#1424]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#309]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2244])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#1421])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7179])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#7178])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#352])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#4141]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7061]) +4 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#651]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2311]) +7 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2313]) +10 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#656]) +7 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#7061]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#7308])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#7283]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7283]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#3307])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][44] -> [FAIL][45] ([Intel XE#7340])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@legacy-planes:
    - shard-bmg:          [PASS][46] -> [SKIP][47] ([Intel XE#6693])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-9/igt@kms_pm_rpm@legacy-planes.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_pm_rpm@legacy-planes.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-pr-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#1406])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-3/igt@kms_psr@fbc-pr-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#6703])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3414] / [Intel XE#3904])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#3414] / [Intel XE#3904])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#1127])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2330])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

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

  * igt@kms_vrr@cmrr:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2168])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@kms_vrr@cmrr.html

  * igt@xe_eudebug@basic-vm-bind-extended-discovery:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#4837]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-extended-discovery.html

  * igt@xe_eudebug@vma-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#4837]) +4 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@xe_eudebug@vma-ufence.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#4837] / [Intel XE#6665])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@interrupt-other:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@xe_eudebug_online@interrupt-other.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#6665])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@xe_eudebug_online@pagefault-write-stress.html

  * igt@xe_evict@evict-cm-threads-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#6540] / [Intel XE#688])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-3/igt@xe_evict@evict-cm-threads-small-multi-vm.html

  * igt@xe_evict@evict-small-external-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7140])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue-cm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2322]) +3 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#1392]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_exec_fault_mode@many-multi-queue-rebind-imm:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#7136]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-3/igt@xe_exec_fault_mode@many-multi-queue-rebind-imm.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#7136]) +3 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#6874]) +7 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-1/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#6874]) +11 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html

  * igt@xe_exec_system_allocator@many-execqueues-new-busy:
    - shard-bmg:          [PASS][71] -> [SKIP][72] ([Intel XE#6703]) +124 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-new-busy.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-new-busy.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#6196])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise:
    - shard-bmg:          [PASS][74] -> [SKIP][75] ([Intel XE#6557] / [Intel XE#6703])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise.html

  * igt@xe_exec_threads@threads-multi-queue-cm-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#7138])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#7138])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html

  * igt@xe_mmap@pci-membarrier-bad-pagesize:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#5100] / [Intel XE#7322])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@xe_mmap@pci-membarrier-bad-pagesize.html

  * igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#6964]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-4/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html

  * igt@xe_multigpu_svm@mgpu-latency-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#6964]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-6/igt@xe_multigpu_svm@mgpu-latency-prefetch.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#1420])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#2284])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#584])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@xe_pm@s3-d3hot-basic-exec.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#944])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#7174])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-7/igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#4130])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          NOTRUN -> [FAIL][87] ([Intel XE#6569])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_vram@vf-access-after-resize-up:
    - shard-bmg:          [PASS][88] -> [FAIL][89] ([Intel XE#5937])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-9/igt@xe_sriov_vram@vf-access-after-resize-up.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-up.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [PASS][90] -> [DMESG-WARN][91] ([Intel XE#6627])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@xe_survivability@runtime-survivability.html

  * igt@xe_vm@bind-array-many:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#6557] / [Intel XE#6703])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_vm@bind-array-many.html

  
#### Possible fixes ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [FAIL][93] ([Intel XE#4665]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-8/igt@intel_hwmon@hwmon-write.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@intel_hwmon@hwmon-write.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-bmg:          [SKIP][95] ([Intel XE#367]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][97] ([Intel XE#7084]) -> [PASS][98] +1 other test pass
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-bmg:          [DMESG-WARN][99] ([Intel XE#5354]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-lnl:          [FAIL][101] -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-lnl-8/igt@kms_fbcon_fbt@psr-suspend.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-bmg:          [SKIP][103] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-1/igt@kms_plane_scaling@intel-max-src-size.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][105] ([Intel XE#7340]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][107] ([Intel XE#5625]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
    - shard-bmg:          [DMESG-WARN][109] ([Intel XE#1727]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-bmg:          [FAIL][111] ([Intel XE#6569]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html

  
#### Warnings ####

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][113] ([Intel XE#1124]) -> [SKIP][114] ([Intel XE#6703]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][115] ([Intel XE#2887]) -> [SKIP][116] ([Intel XE#6703]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
    - shard-bmg:          [SKIP][117] ([Intel XE#2252]) -> [SKIP][118] ([Intel XE#6703]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-bmg:          [FAIL][119] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][120] ([Intel XE#6703])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-1/igt@kms_content_protection@lic-type-0-hdcp14.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          [SKIP][121] ([Intel XE#4422]) -> [SKIP][122] ([Intel XE#6703])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          [SKIP][123] ([Intel XE#7178]) -> [SKIP][124] ([Intel XE#6703]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][125] ([Intel XE#4141]) -> [SKIP][126] ([Intel XE#6703]) +4 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][127] ([Intel XE#2311]) -> [SKIP][128] ([Intel XE#6703]) +5 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][129] ([Intel XE#2313]) -> [SKIP][130] ([Intel XE#6703]) +3 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][131] ([Intel XE#2350]) -> [SKIP][132] ([Intel XE#6703])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][133] ([Intel XE#3544]) -> [SKIP][134] ([Intel XE#3374] / [Intel XE#3544])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-bmg:          [SKIP][135] ([Intel XE#7283]) -> [SKIP][136] ([Intel XE#6703])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          [SKIP][137] ([Intel XE#870]) -> [SKIP][138] ([Intel XE#6703])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][139] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][140] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr@pr-no-drrs:
    - shard-bmg:          [SKIP][141] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][142] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-7/igt@kms_psr@pr-no-drrs.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_psr@pr-no-drrs.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][143] ([Intel XE#2426]) -> [SKIP][144] ([Intel XE#2509])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][145] ([Intel XE#1499]) -> [SKIP][146] ([Intel XE#6703])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@kms_vrr@flip-basic.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@kms_vrr@flip-basic.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          [SKIP][147] ([Intel XE#2504] / [Intel XE#7319]) -> [SKIP][148] ([Intel XE#6703])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-bmg:          [SKIP][149] ([Intel XE#4837]) -> [SKIP][150] ([Intel XE#6703]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-extended.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-extended.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
    - shard-bmg:          [SKIP][151] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][152] ([Intel XE#6703])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html

  * igt@xe_evict@evict-small-multi-queue-priority:
    - shard-bmg:          [SKIP][153] ([Intel XE#7140]) -> [SKIP][154] ([Intel XE#6703])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-priority.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
    - shard-bmg:          [SKIP][155] ([Intel XE#2322]) -> [SKIP][156] ([Intel XE#6703]) +2 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch:
    - shard-bmg:          [SKIP][157] ([Intel XE#7136]) -> [SKIP][158] ([Intel XE#6703]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem:
    - shard-bmg:          [SKIP][159] ([Intel XE#6874]) -> [SKIP][160] ([Intel XE#6703]) +7 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html

  * igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race:
    - shard-bmg:          [SKIP][161] ([Intel XE#7138]) -> [SKIP][162] ([Intel XE#6703])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][163] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][164] ([Intel XE#5466])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-bmg:          [SKIP][165] ([Intel XE#4733]) -> [SKIP][166] ([Intel XE#6703])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-2/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          [FAIL][167] ([Intel XE#6569]) -> [FAIL][168] ([Intel XE#5937])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8766/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
  [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8766 -> IGTPW_14597

  IGTPW_14597: 6a89e69be222393d3dd2f894a914c79f78f612ca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8766: 8766
  xe-4591-45a3045fc0dc46a893cb8bbe304afafd4120c904: 45a3045fc0dc46a893cb8bbe304afafd4120c904

== Logs ==

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

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

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

* Re: ✗ Xe.CI.FULL: failure for lib/rendercopy: Alter pipeline and add shader for Xe3p
  2026-02-24 13:35 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-24 14:44   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2026-02-24 14:44 UTC (permalink / raw)
  To: igt-dev

On Tue, Feb 24, 2026 at 01:35:50PM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  lib/rendercopy: Alter pipeline and add shader for Xe3p           
>    URL:     https://patchwork.freedesktop.org/series/161991/                 
>    State:   failure                                                          
>    Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14597/index.html 
> 
>         CI Bug Log - changes from XEIGT_8766_FULL -> XEIGTPW_14597_FULL
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with XEIGTPW_14597_FULL absolutely need to
>    be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in XEIGTPW_14597_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 (2 -> 2)
> 
>    No changes in participating hosts
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    XEIGTPW_14597_FULL:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@core_hotunplug@hotreplug:
> 
>           * shard-bmg: PASS -> ABORT
>      * igt@fbdev@eof:
> 
>           * shard-bmg: PASS -> FAIL
>      * igt@xe_exec_system_allocator@many-64k-mmap-shared-remap:
> 
>           * shard-bmg: PASS -> DMESG-WARN

Change is unrelated to above abort/fail/dmesg-warn.

--
Zbigniew

> 
> Known issues
> 
>    Here are the changes found in XEIGTPW_14597_FULL that come from known
>    issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#3157)
>      * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2327)
>      * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +2 other tests skip
>      * igt@kms_big_fb@y-tiled-addfb-size-overflow:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#610)
>      * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +3 other tests skip
>      * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#2191)
>      * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +2 other tests skip
>      * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) +2 other tests skip
>      * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#3432)
>      * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2652) +12 other tests skip
>      * igt@kms_chamelium_color@ctm-0-50:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#306)
>      * igt@kms_chamelium_frames@hdmi-crc-planes-random:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +1 other test skip
>      * igt@kms_chamelium_hpd@dp-hpd-storm:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2252) +4 other tests skip
>      * igt@kms_color@invalid-ctm-matrix-sizes:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#6703) +12 other tests skip
>      * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-a-plane-0:
> 
>           * shard-lnl: NOTRUN -> FAIL (Intel XE#7305) +9 other tests fail
>      * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-1:
> 
>           * shard-bmg: NOTRUN -> FAIL (Intel XE#3304)
>      * igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
> 
>           * shard-bmg: NOTRUN -> FAIL (Intel XE#1178 / Intel XE#3304) +2
>             other tests fail
>      * igt@kms_cursor_crc@cursor-offscreen-64x21:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2320) +1 other test skip
>      * igt@kms_cursor_crc@cursor-sliding-32x32:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +1 other test skip
>      * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip
>      * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2244)
>      * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#1421)
>      * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#7179)
>      * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#7178)
>      * igt@kms_force_connector_basic@prune-stale-modes:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#352)
>      * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#4141) +3 other tests skip
>      * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#7061) +4 other tests skip
>      * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +1 other test skip
>      * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +7 other tests skip
>      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +10 other tests skip
>      * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +7 other tests skip
>      * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#7061) +1 other test skip
>      * igt@kms_hdmi_inject@inject-audio:
> 
>           * shard-bmg: PASS -> SKIP (Intel XE#7308)
>      * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#7283) +1 other test skip
>      * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#7283) +1 other test skip
>      * igt@kms_plane_scaling@intel-max-src-size:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#3307)
>      * igt@kms_pm_dc@dc5-psr:
> 
>           * shard-lnl: PASS -> FAIL (Intel XE#7340)
>      * igt@kms_pm_rpm@legacy-planes:
> 
>           * shard-bmg: PASS -> SKIP (Intel XE#6693)
>      * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#1406 / Intel XE#1489) +2
>             other tests skip
>      * igt@kms_psr@fbc-pr-cursor-plane-onoff:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#1406)
>      * igt@kms_psr@fbc-psr2-primary-blt:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#1406 / Intel XE#2234 / Intel
>             XE#2850) +2 other tests skip
>      * igt@kms_psr@pr-sprite-plane-onoff:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#1406 / Intel XE#6703)
>      * igt@kms_rotation_crc@primary-rotation-270:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904)
>      * igt@kms_rotation_crc@primary-rotation-90:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904)
>      * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#1127)
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2330)
>      * igt@kms_scaling_modes@scaling-mode-full:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2413)
>      * igt@kms_vrr@cmrr:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2168)
>      * igt@xe_eudebug@basic-vm-bind-extended-discovery:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#4837) +1 other test skip
>      * igt@xe_eudebug@vma-ufence:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#4837) +4 other tests skip
>      * igt@xe_eudebug_online@basic-breakpoint:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#4837 / Intel XE#6665)
>      * igt@xe_eudebug_online@interrupt-other:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#4837 / Intel XE#6665) +2
>             other tests skip
>      * igt@xe_eudebug_online@pagefault-write-stress:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#6665)
>      * igt@xe_evict@evict-cm-threads-small-multi-vm:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#6540 / Intel XE#688)
>      * igt@xe_evict@evict-small-external-multi-queue-cm:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#7140)
>      * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +3 other tests skip
>      * igt@xe_exec_basic@multigpu-once-bindexecqueue:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +2 other tests skip
>      * igt@xe_exec_fault_mode@many-multi-queue-rebind-imm:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#7136) +1 other test skip
>      * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#7136) +3 other tests skip
>      * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#6874) +7 other tests skip
>      * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#6874) +11 other tests skip
>      * igt@xe_exec_system_allocator@many-execqueues-new-busy:
> 
>           * shard-bmg: PASS -> SKIP (Intel XE#6703) +124 other tests skip
>      * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#6196)
>      * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-madvise:
> 
>           * shard-bmg: PASS -> SKIP (Intel XE#6557 / Intel XE#6703)
>      * igt@xe_exec_threads@threads-multi-queue-cm-rebind:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#7138)
>      * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#7138)
>      * igt@xe_mmap@pci-membarrier-bad-pagesize:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#5100 / Intel XE#7322)
>      * igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#6964) +1 other test skip
>      * igt@xe_multigpu_svm@mgpu-latency-prefetch:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#6964) +1 other test skip
>      * igt@xe_pat@pat-index-xehpc:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#1420)
>      * igt@xe_pm@d3cold-mmap-system:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#2284)
>      * igt@xe_pm@s3-d3hot-basic-exec:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#584)
>      * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#944)
>      * igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#7174)
>      * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
> 
>           * shard-lnl: NOTRUN -> SKIP (Intel XE#4130)
>      * igt@xe_sriov_flr@flr-each-isolation:
> 
>           * shard-bmg: NOTRUN -> FAIL (Intel XE#6569)
>      * igt@xe_sriov_vram@vf-access-after-resize-up:
> 
>           * shard-bmg: PASS -> FAIL (Intel XE#5937)
>      * igt@xe_survivability@runtime-survivability:
> 
>           * shard-bmg: PASS -> DMESG-WARN (Intel XE#6627)
>      * igt@xe_vm@bind-array-many:
> 
>           * shard-bmg: NOTRUN -> SKIP (Intel XE#6557 / Intel XE#6703)
> 
>     Possible fixes
> 
>      * igt@intel_hwmon@hwmon-write:
> 
>           * shard-bmg: FAIL (Intel XE#4665) -> PASS
>      * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
> 
>           * shard-bmg: SKIP (Intel XE#367) -> PASS
>      * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
> 
>           * shard-bmg: INCOMPLETE (Intel XE#7084) -> PASS +1 other test pass
>      * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
> 
>           * shard-bmg: DMESG-WARN (Intel XE#5354) -> PASS
>      * igt@kms_fbcon_fbt@psr-suspend:
> 
>           * shard-lnl: FAIL -> PASS
>      * igt@kms_plane_scaling@intel-max-src-size:
> 
>           * shard-bmg: SKIP (Intel XE#2685 / Intel XE#3307) -> PASS
>      * igt@kms_pm_dc@dc6-psr:
> 
>           * shard-lnl: FAIL (Intel XE#7340) -> PASS
>      * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
> 
>           * shard-lnl: FAIL (Intel XE#5625) -> PASS
>      * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
> 
>           * shard-bmg: DMESG-WARN (Intel XE#1727) -> PASS
>      * igt@xe_sriov_flr@flr-twice:
> 
>           * shard-bmg: FAIL (Intel XE#6569) -> PASS
> 
>     Warnings
> 
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> 
>           * shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#6703) +2 other
>             tests skip
>      * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> 
>           * shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#6703) +3 other
>             tests skip
>      * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
> 
>           * shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#6703) +1 other
>             test skip
>      * igt@kms_content_protection@lic-type-0-hdcp14:
> 
>           * shard-bmg: FAIL (Intel XE#1178 / Intel XE#3304) -> SKIP (Intel
>             XE#6703)
>      * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
> 
>           * shard-bmg: SKIP (Intel XE#4422) -> SKIP (Intel XE#6703)
>      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
> 
>           * shard-bmg: SKIP (Intel XE#7178) -> SKIP (Intel XE#6703) +1 other
>             test skip
>      * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
> 
>           * shard-bmg: SKIP (Intel XE#4141) -> SKIP (Intel XE#6703) +4 other
>             tests skip
>      * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
> 
>           * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#6703) +5 other
>             tests skip
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
> 
>           * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#6703) +3 other
>             tests skip
>      * igt@kms_frontbuffer_tracking@plane-fbc-rte:
> 
>           * shard-bmg: SKIP (Intel XE#2350) -> SKIP (Intel XE#6703)
>      * igt@kms_hdr@brightness-with-hdr:
> 
>           * shard-bmg: SKIP (Intel XE#3544) -> SKIP (Intel XE#3374 / Intel
>             XE#3544)
>      * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
> 
>           * shard-bmg: SKIP (Intel XE#7283) -> SKIP (Intel XE#6703)
>      * igt@kms_pm_backlight@fade-with-dpms:
> 
>           * shard-bmg: SKIP (Intel XE#870) -> SKIP (Intel XE#6703)
>      * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
> 
>           * shard-bmg: SKIP (Intel XE#1406 / Intel XE#1489) -> SKIP (Intel
>             XE#1406 / Intel XE#6703) +1 other test skip
>      * igt@kms_psr@pr-no-drrs:
> 
>           * shard-bmg: SKIP (Intel XE#1406 / Intel XE#2234 / Intel XE#2850)
>             -> SKIP (Intel XE#1406 / Intel XE#6703) +1 other test skip
>      * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> 
>           * shard-bmg: SKIP (Intel XE#2426) -> SKIP (Intel XE#2509)
>      * igt@kms_vrr@flip-basic:
> 
>           * shard-bmg: SKIP (Intel XE#1499) -> SKIP (Intel XE#6703)
>      * igt@xe_create@multigpu-create-massive-size:
> 
>           * shard-bmg: SKIP (Intel XE#2504 / Intel XE#7319) -> SKIP (Intel
>             XE#6703)
>      * igt@xe_eudebug@basic-vm-bind-extended:
> 
>           * shard-bmg: SKIP (Intel XE#4837) -> SKIP (Intel XE#6703) +1 other
>             test skip
>      * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
> 
>           * shard-bmg: SKIP (Intel XE#4837 / Intel XE#6665) -> SKIP (Intel
>             XE#6703)
>      * igt@xe_evict@evict-small-multi-queue-priority:
> 
>           * shard-bmg: SKIP (Intel XE#7140) -> SKIP (Intel XE#6703)
>      * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
> 
>           * shard-bmg: SKIP (Intel XE#2322) -> SKIP (Intel XE#6703) +2 other
>             tests skip
>      * igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch:
> 
>           * shard-bmg: SKIP (Intel XE#7136) -> SKIP (Intel XE#6703) +1 other
>             test skip
>      * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem:
> 
>           * shard-bmg: SKIP (Intel XE#6874) -> SKIP (Intel XE#6703) +7 other
>             tests skip
>      * igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race:
> 
>           * shard-bmg: SKIP (Intel XE#7138) -> SKIP (Intel XE#6703)
>      * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
> 
>           * shard-bmg: ABORT (Intel XE#5466 / Intel XE#6652) -> ABORT (Intel
>             XE#5466)
>      * igt@xe_pxp@pxp-stale-queue-post-suspend:
> 
>           * shard-bmg: SKIP (Intel XE#4733) -> SKIP (Intel XE#6703)
>      * igt@xe_sriov_flr@flr-vfs-parallel:
> 
>           * shard-bmg: FAIL (Intel XE#6569) -> FAIL (Intel XE#5937)
> 
> Build changes
> 
>      * IGT: IGT_8766 -> IGTPW_14597
> 
>    IGTPW_14597: 6a89e69be222393d3dd2f894a914c79f78f612ca @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    IGT_8766: 8766
>    xe-4591-45a3045fc0dc46a893cb8bbe304afafd4120c904:
>    45a3045fc0dc46a893cb8bbe304afafd4120c904

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

end of thread, other threads:[~2026-02-24 14:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-23 16:35 [PATCH i-g-t] lib/rendercopy: Alter pipeline and add shader for Xe3p Zbigniew Kempczyński
2026-02-23 21:28 ` Jan Maslak
2026-02-23 22:19 ` ✗ i915.CI.BAT: failure for " Patchwork
2026-02-24  7:37   ` Zbigniew Kempczyński
2026-02-23 22:34 ` ✓ Xe.CI.BAT: success " Patchwork
2026-02-24 13:35 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-24 14:44   ` Zbigniew Kempczyński

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