* [PATCH 0/4] lib/iga64: miscelanious improvements
@ 2025-03-14 14:59 Andrzej Hajda
2025-03-14 14:59 ` [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms Andrzej Hajda
` (6 more replies)
0 siblings, 7 replies; 15+ messages in thread
From: Andrzej Hajda @ 2025-03-14 14:59 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Kamil Konieczny, Andrzej Hajda
Several iga64 assembly related improvements.
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
Andrzej Hajda (4):
lib/iga64: fix send macro for DG2 platforms
scripts/generate_iga64_codes: make script less chatty
scripts/generate_iga64_codes: fix handling empty asms
scripts/generate_iga64_codes: remove parenthesis around ARG macro body
lib/iga64_generated_codes.c | 2 +-
lib/iga64_macros.h | 2 +-
scripts/generate_iga64_codes | 11 +++++------
3 files changed, 7 insertions(+), 8 deletions(-)
---
base-commit: a851348546d61620c263d3292148f67620efa7d0
change-id: 20250314-iga64_misc-2a02f410b512
Best regards,
--
Andrzej Hajda <andrzej.hajda@intel.com>
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda @ 2025-03-14 14:59 ` Andrzej Hajda 2025-03-21 12:58 ` Zbigniew Kempczyński 2025-03-14 14:59 ` [PATCH 2/4] scripts/generate_iga64_codes: make script less chatty Andrzej Hajda ` (5 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Andrzej Hajda @ 2025-03-14 14:59 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Kamil Konieczny, Andrzej Hajda src1 argument should be in form of null:0 for some platforms, use special macro src1_null for it. iga64 -Xauto-deps -Wall -p=12p71 lib/iga64_generated_codes.c.d/iga64_assembly_media_block_write_aip.12p71.asm line 3.31: warning: Src1.Length should suffix src1 register (e.g. r10:4) (W) send.dc1 (1) null r4 null 0x0 0x40A8000 Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> --- lib/iga64_generated_codes.c | 2 +- lib/iga64_macros.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c index a74a8864e5ca..551dead2be17 100644 --- a/lib/iga64_generated_codes.c +++ b/lib/iga64_generated_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS 80bb609ce27131259d19629dc74e349f +#define MD5_SUM_IGA64_ASMS 22a5a4671242c3257209f4051f1c0c7e struct iga64_template const iga64_code_gpgpu_fill[] = { { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h index ac482e47c05e..8e452cf634f9 100644 --- a/lib/iga64_macros.h +++ b/lib/iga64_macros.h @@ -70,7 +70,7 @@ #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_BLOCK_MSG_HDR(dst, x, y, width) #define LOAD_SPACE_DW(dst, src) send.dc1 (1) dst src src1_null 0x0 0x2190000 -#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst null 0x0 0x40A8000 +#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst src1_null 0x0 0x40A8000 #else #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms 2025-03-14 14:59 ` [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms Andrzej Hajda @ 2025-03-21 12:58 ` Zbigniew Kempczyński 2025-03-24 13:32 ` Kamil Konieczny 0 siblings, 1 reply; 15+ messages in thread From: Zbigniew Kempczyński @ 2025-03-21 12:58 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev, Kamil Konieczny On Fri, Mar 14, 2025 at 03:59:08PM +0100, Andrzej Hajda wrote: > src1 argument should be in form of null:0 for some platforms, > use special macro src1_null for it. > > iga64 -Xauto-deps -Wall -p=12p71 lib/iga64_generated_codes.c.d/iga64_assembly_media_block_write_aip.12p71.asm > line 3.31: warning: Src1.Length should suffix src1 register (e.g. r10:4) > (W) send.dc1 (1) null r4 null 0x0 0x40A8000 LGTM: Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> > --- > lib/iga64_generated_codes.c | 2 +- > lib/iga64_macros.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c > index a74a8864e5ca..551dead2be17 100644 > --- a/lib/iga64_generated_codes.c > +++ b/lib/iga64_generated_codes.c > @@ -3,7 +3,7 @@ > > #include "gpgpu_shader.h" > > -#define MD5_SUM_IGA64_ASMS 80bb609ce27131259d19629dc74e349f > +#define MD5_SUM_IGA64_ASMS 22a5a4671242c3257209f4051f1c0c7e > > struct iga64_template const iga64_code_gpgpu_fill[] = { > { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { > diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h > index ac482e47c05e..8e452cf634f9 100644 > --- a/lib/iga64_macros.h > +++ b/lib/iga64_macros.h > @@ -70,7 +70,7 @@ > #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) > #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_BLOCK_MSG_HDR(dst, x, y, width) > #define LOAD_SPACE_DW(dst, src) send.dc1 (1) dst src src1_null 0x0 0x2190000 > -#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst null 0x0 0x40A8000 > +#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst src1_null 0x0 0x40A8000 > #else > #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) > #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms 2025-03-21 12:58 ` Zbigniew Kempczyński @ 2025-03-24 13:32 ` Kamil Konieczny 0 siblings, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-03-24 13:32 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: Andrzej Hajda, igt-dev Hi Zbigniew, On 2025-03-21 at 13:58:12 +0100, Zbigniew Kempczyński wrote: > On Fri, Mar 14, 2025 at 03:59:08PM +0100, Andrzej Hajda wrote: > > src1 argument should be in form of null:0 for some platforms, > > use special macro src1_null for it. > > > > iga64 -Xauto-deps -Wall -p=12p71 lib/iga64_generated_codes.c.d/iga64_assembly_media_block_write_aip.12p71.asm > > line 3.31: warning: Src1.Length should suffix src1 register (e.g. r10:4) > > (W) send.dc1 (1) null r4 null 0x0 0x40A8000 > > LGTM: > > Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > -- > Zbigniew Thank you, all applied. Regards, Kamil > > > > > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> > > --- > > lib/iga64_generated_codes.c | 2 +- > > lib/iga64_macros.h | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c > > index a74a8864e5ca..551dead2be17 100644 > > --- a/lib/iga64_generated_codes.c > > +++ b/lib/iga64_generated_codes.c > > @@ -3,7 +3,7 @@ > > > > #include "gpgpu_shader.h" > > > > -#define MD5_SUM_IGA64_ASMS 80bb609ce27131259d19629dc74e349f > > +#define MD5_SUM_IGA64_ASMS 22a5a4671242c3257209f4051f1c0c7e > > > > struct iga64_template const iga64_code_gpgpu_fill[] = { > > { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { > > diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h > > index ac482e47c05e..8e452cf634f9 100644 > > --- a/lib/iga64_macros.h > > +++ b/lib/iga64_macros.h > > @@ -70,7 +70,7 @@ > > #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) > > #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_BLOCK_MSG_HDR(dst, x, y, width) > > #define LOAD_SPACE_DW(dst, src) send.dc1 (1) dst src src1_null 0x0 0x2190000 > > -#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst null 0x0 0x40A8000 > > +#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst src1_null 0x0 0x40A8000 > > #else > > #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) > > #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) > > > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 2/4] scripts/generate_iga64_codes: make script less chatty 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda 2025-03-14 14:59 ` [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms Andrzej Hajda @ 2025-03-14 14:59 ` Andrzej Hajda 2025-03-20 17:00 ` Kamil Konieczny 2025-03-14 14:59 ` [PATCH 3/4] scripts/generate_iga64_codes: fix handling empty asms Andrzej Hajda ` (4 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Andrzej Hajda @ 2025-03-14 14:59 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Kamil Konieczny, Andrzej Hajda Script generated three redundant lines per compilation. Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> --- scripts/generate_iga64_codes | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes index 3f207e9ff1a8..16bdc6fd6d0f 100755 --- a/scripts/generate_iga64_codes +++ b/scripts/generate_iga64_codes @@ -96,7 +96,7 @@ compile_iga64() { eval "$cmd" <<<"$asm_body" || die "cpp error for $asm_name.$gen_name\ncmd: $cmd" cmd="iga64 -Xauto-deps -Wall -p=$gen_name" cmd+=" $WD/$asm_name.$gen_name.asm" - warn "$cmd" + [ -n "$SHOW_CMD" ] && warn "$cmd" eval "$cmd" || die "iga64 error for $asm_name.$gen_name\ncmd: $cmd" } @@ -110,13 +110,12 @@ for asm in "${ASMS[@]}"; do for gen in $GEN_VERSIONS; do gen_ver="${gen%%:*}" gen_name="${gen#*:}" - warn "Generating $asm_code for platform $gen_name" # Verify generated code will not contain IGA64_ARGs. for d in $(IGA64_ARG0=0 compile_iga64 | hexdump -v -e '1/4 "0x%08x\n"'); do (( (d & IGA64_ARG_MASK) == IGA64_ARG0 )) || continue die "Assembly for $asm_name.$gen_name contains instruction which compiles to $d, conflicts with IGA64_ARG0/mask $IGA64_ARG0/$IGA64_ARG_MASK\ncmd: $cmd" done - compile_iga64 > "$WD/$asm_name.$gen_name.bin" || die "Cannot write to $WD/$asm_name.$gen_name.bin" + SHOW_CMD=1 compile_iga64 > "$WD/$asm_name.$gen_name.bin" || die "Cannot write to $WD/$asm_name.$gen_name.bin" code="$(hexdump -v -e '"\t\t" 4/4 "0x%08x, " "\n"' $WD/$asm_name.$gen_name.bin)" [ -z "$cur_code" ] && cur_code="$code" [ "$cur_code" != "$code" ] && { -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH 2/4] scripts/generate_iga64_codes: make script less chatty 2025-03-14 14:59 ` [PATCH 2/4] scripts/generate_iga64_codes: make script less chatty Andrzej Hajda @ 2025-03-20 17:00 ` Kamil Konieczny 0 siblings, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-03-20 17:00 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev, Zbigniew Kempczyński Hi Andrzej, On 2025-03-14 at 15:59:09 +0100, Andrzej Hajda wrote: > Script generated three redundant lines per compilation. > > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/generate_iga64_codes | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes > index 3f207e9ff1a8..16bdc6fd6d0f 100755 > --- a/scripts/generate_iga64_codes > +++ b/scripts/generate_iga64_codes > @@ -96,7 +96,7 @@ compile_iga64() { > eval "$cmd" <<<"$asm_body" || die "cpp error for $asm_name.$gen_name\ncmd: $cmd" > cmd="iga64 -Xauto-deps -Wall -p=$gen_name" > cmd+=" $WD/$asm_name.$gen_name.asm" > - warn "$cmd" > + [ -n "$SHOW_CMD" ] && warn "$cmd" > eval "$cmd" || die "iga64 error for $asm_name.$gen_name\ncmd: $cmd" > } > > @@ -110,13 +110,12 @@ for asm in "${ASMS[@]}"; do > for gen in $GEN_VERSIONS; do > gen_ver="${gen%%:*}" > gen_name="${gen#*:}" > - warn "Generating $asm_code for platform $gen_name" > # Verify generated code will not contain IGA64_ARGs. > for d in $(IGA64_ARG0=0 compile_iga64 | hexdump -v -e '1/4 "0x%08x\n"'); do > (( (d & IGA64_ARG_MASK) == IGA64_ARG0 )) || continue > die "Assembly for $asm_name.$gen_name contains instruction which compiles to $d, conflicts with IGA64_ARG0/mask $IGA64_ARG0/$IGA64_ARG_MASK\ncmd: $cmd" > done > - compile_iga64 > "$WD/$asm_name.$gen_name.bin" || die "Cannot write to $WD/$asm_name.$gen_name.bin" > + SHOW_CMD=1 compile_iga64 > "$WD/$asm_name.$gen_name.bin" || die "Cannot write to $WD/$asm_name.$gen_name.bin" > code="$(hexdump -v -e '"\t\t" 4/4 "0x%08x, " "\n"' $WD/$asm_name.$gen_name.bin)" > [ -z "$cur_code" ] && cur_code="$code" > [ "$cur_code" != "$code" ] && { > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] scripts/generate_iga64_codes: fix handling empty asms 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda 2025-03-14 14:59 ` [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms Andrzej Hajda 2025-03-14 14:59 ` [PATCH 2/4] scripts/generate_iga64_codes: make script less chatty Andrzej Hajda @ 2025-03-14 14:59 ` Andrzej Hajda 2025-03-20 17:01 ` Kamil Konieczny 2025-03-14 14:59 ` [PATCH 4/4] scripts/generate_iga64_codes: remove parenthesis around ARG macro body Andrzej Hajda ` (3 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Andrzej Hajda @ 2025-03-14 14:59 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Kamil Konieczny, Andrzej Hajda Script incorrectly handled empty asms in case of the newest platforms. Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> --- scripts/generate_iga64_codes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes index 16bdc6fd6d0f..bfef0e5c2853 100755 --- a/scripts/generate_iga64_codes +++ b/scripts/generate_iga64_codes @@ -104,7 +104,7 @@ for asm in "${ASMS[@]}"; do asm_name="${asm%%:*}" asm_code="${asm_name/assembly/code}" asm_body="${asm#*:}" - cur_code="" + cur_code="NONE" cur_ver="" echo -e "\nstruct iga64_template const $asm_code[] = {" >>$OUTPUT for gen in $GEN_VERSIONS; do @@ -117,7 +117,7 @@ for asm in "${ASMS[@]}"; do done SHOW_CMD=1 compile_iga64 > "$WD/$asm_name.$gen_name.bin" || die "Cannot write to $WD/$asm_name.$gen_name.bin" code="$(hexdump -v -e '"\t\t" 4/4 "0x%08x, " "\n"' $WD/$asm_name.$gen_name.bin)" - [ -z "$cur_code" ] && cur_code="$code" + [ "$cur_code" = "NONE" ] && cur_code="$code" [ "$cur_code" != "$code" ] && { echo -e "\t{ .gen_ver = $cur_ver, .size = $(dword_count "$cur_code"), .code = (const uint32_t []) {\n$cur_code\n\t}}," >>$OUTPUT cur_code="$code" -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH 3/4] scripts/generate_iga64_codes: fix handling empty asms 2025-03-14 14:59 ` [PATCH 3/4] scripts/generate_iga64_codes: fix handling empty asms Andrzej Hajda @ 2025-03-20 17:01 ` Kamil Konieczny 0 siblings, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-03-20 17:01 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev, Zbigniew Kempczyński Hi Andrzej, On 2025-03-14 at 15:59:10 +0100, Andrzej Hajda wrote: > Script incorrectly handled empty asms in case of the newest > platforms. > > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/generate_iga64_codes | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes > index 16bdc6fd6d0f..bfef0e5c2853 100755 > --- a/scripts/generate_iga64_codes > +++ b/scripts/generate_iga64_codes > @@ -104,7 +104,7 @@ for asm in "${ASMS[@]}"; do > asm_name="${asm%%:*}" > asm_code="${asm_name/assembly/code}" > asm_body="${asm#*:}" > - cur_code="" > + cur_code="NONE" > cur_ver="" > echo -e "\nstruct iga64_template const $asm_code[] = {" >>$OUTPUT > for gen in $GEN_VERSIONS; do > @@ -117,7 +117,7 @@ for asm in "${ASMS[@]}"; do > done > SHOW_CMD=1 compile_iga64 > "$WD/$asm_name.$gen_name.bin" || die "Cannot write to $WD/$asm_name.$gen_name.bin" > code="$(hexdump -v -e '"\t\t" 4/4 "0x%08x, " "\n"' $WD/$asm_name.$gen_name.bin)" > - [ -z "$cur_code" ] && cur_code="$code" > + [ "$cur_code" = "NONE" ] && cur_code="$code" > [ "$cur_code" != "$code" ] && { > echo -e "\t{ .gen_ver = $cur_ver, .size = $(dword_count "$cur_code"), .code = (const uint32_t []) {\n$cur_code\n\t}}," >>$OUTPUT > cur_code="$code" > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 4/4] scripts/generate_iga64_codes: remove parenthesis around ARG macro body 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda ` (2 preceding siblings ...) 2025-03-14 14:59 ` [PATCH 3/4] scripts/generate_iga64_codes: fix handling empty asms Andrzej Hajda @ 2025-03-14 14:59 ` Andrzej Hajda 2025-03-20 17:02 ` Kamil Konieczny 2025-03-15 2:23 ` ✓ Xe.CI.BAT: success for lib/iga64: miscelanious improvements Patchwork ` (2 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Andrzej Hajda @ 2025-03-14 14:59 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Kamil Konieczny, Andrzej Hajda Parenthesis around macro body were added to follow C conventions. For newer platforms they are not allowed in such context. For iga64 they do not change anything and can be omited. Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> --- scripts/generate_iga64_codes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes index bfef0e5c2853..1675ffe639b3 100755 --- a/scripts/generate_iga64_codes +++ b/scripts/generate_iga64_codes @@ -92,7 +92,7 @@ EOF # Compiles assembly to binary representation sent to stdout. compile_iga64() { cmd="cpp -P - -o $WD/$asm_name.$gen_name.asm" - cmd+=" -DGEN_VER=$gen_ver -D'ARG(n)=($IGA64_ARG0 + (n))' -imacros $IGT_SRCDIR/lib/iga64_macros.h" + cmd+=" -DGEN_VER=$gen_ver -D'ARG(n)=$IGA64_ARG0 + n' -imacros $IGT_SRCDIR/lib/iga64_macros.h" eval "$cmd" <<<"$asm_body" || die "cpp error for $asm_name.$gen_name\ncmd: $cmd" cmd="iga64 -Xauto-deps -Wall -p=$gen_name" cmd+=" $WD/$asm_name.$gen_name.asm" -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH 4/4] scripts/generate_iga64_codes: remove parenthesis around ARG macro body 2025-03-14 14:59 ` [PATCH 4/4] scripts/generate_iga64_codes: remove parenthesis around ARG macro body Andrzej Hajda @ 2025-03-20 17:02 ` Kamil Konieczny 0 siblings, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-03-20 17:02 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev, Zbigniew Kempczyński Hi Andrzej, On 2025-03-14 at 15:59:11 +0100, Andrzej Hajda wrote: > Parenthesis around macro body were added to follow C conventions. > For newer platforms they are not allowed in such context. > For iga64 they do not change anything and can be omited. > > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/generate_iga64_codes | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes > index bfef0e5c2853..1675ffe639b3 100755 > --- a/scripts/generate_iga64_codes > +++ b/scripts/generate_iga64_codes > @@ -92,7 +92,7 @@ EOF > # Compiles assembly to binary representation sent to stdout. > compile_iga64() { > cmd="cpp -P - -o $WD/$asm_name.$gen_name.asm" > - cmd+=" -DGEN_VER=$gen_ver -D'ARG(n)=($IGA64_ARG0 + (n))' -imacros $IGT_SRCDIR/lib/iga64_macros.h" > + cmd+=" -DGEN_VER=$gen_ver -D'ARG(n)=$IGA64_ARG0 + n' -imacros $IGT_SRCDIR/lib/iga64_macros.h" > eval "$cmd" <<<"$asm_body" || die "cpp error for $asm_name.$gen_name\ncmd: $cmd" > cmd="iga64 -Xauto-deps -Wall -p=$gen_name" > cmd+=" $WD/$asm_name.$gen_name.asm" > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for lib/iga64: miscelanious improvements 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda ` (3 preceding siblings ...) 2025-03-14 14:59 ` [PATCH 4/4] scripts/generate_iga64_codes: remove parenthesis around ARG macro body Andrzej Hajda @ 2025-03-15 2:23 ` Patchwork 2025-03-15 2:40 ` ✗ i915.CI.BAT: failure " Patchwork 2025-03-15 12:07 ` ✗ Xe.CI.Full: " Patchwork 6 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-03-15 2:23 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11710 bytes --] == Series Details == Series: lib/iga64: miscelanious improvements URL : https://patchwork.freedesktop.org/series/146324/ State : success == Summary == CI Bug Log - changes from XEIGT_8275_BAT -> XEIGTPW_12782_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8275_BAT and XEIGTPW_12782_BAT: ### New IGT tests (96) ### * igt@xe_compute@compute-square: - Statuses : 9 pass(s) - Exec time: [0.01, 0.05] s * igt@xe_debugfs@base: - Statuses : 9 pass(s) - Exec time: [0.00] s * igt@xe_debugfs@forcewake: - Statuses : 9 pass(s) - Exec time: [0.0, 0.00] s * igt@xe_debugfs@gt: - Statuses : 8 pass(s) - Exec time: [0.02, 0.50] s * igt@xe_dma_buf_sync@export-dma-buf-once-read-sync: - Statuses : 9 pass(s) - Exec time: [0.01, 0.03] s * igt@xe_evict@evict-beng-small: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 7.19] s * igt@xe_evict@evict-beng-small-cm: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 5.37] s * igt@xe_evict@evict-beng-small-external: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 7.11] s * igt@xe_evict@evict-beng-small-external-cm: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 5.51] s * igt@xe_evict@evict-beng-small-multi-vm: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 13.78] s * igt@xe_evict@evict-small: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 7.12] s * igt@xe_evict@evict-small-cm: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 5.55] s * igt@xe_evict@evict-small-external: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 5.43] s * igt@xe_evict@evict-small-external-cm: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 7.17] s * igt@xe_evict@evict-small-multi-vm: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 15.64] s * igt@xe_exec_balancer@no-exec-cm-virtual-basic: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@no-exec-parallel-basic: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@no-exec-virtual-basic: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-cm-virtual-basic: - Statuses : 9 pass(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_balancer@twice-cm-virtual-rebind: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-cm-virtual-userptr: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate: - Statuses : 9 pass(s) - Exec time: [0.0, 0.55] s * igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-parallel-basic: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-parallel-rebind: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-parallel-userptr: - Statuses : 9 pass(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_balancer@twice-parallel-userptr-invalidate: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-parallel-userptr-rebind: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-virtual-basic: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-virtual-rebind: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-virtual-userptr: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-virtual-userptr-invalidate: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_balancer@twice-virtual-userptr-rebind: - Statuses : 9 pass(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_basic@no-exec-basic: - Statuses : 9 pass(s) - Exec time: [0.01, 0.02] s * igt@xe_exec_basic@no-exec-userptr-invalidate: - Statuses : 9 pass(s) - Exec time: [0.01, 0.03] s * igt@xe_exec_basic@twice-basic: - Statuses : 9 pass(s) - Exec time: [0.01, 0.03] s * igt@xe_exec_basic@twice-basic-defer-bind: - Statuses : 9 pass(s) - Exec time: [0.01, 0.03] s * igt@xe_exec_basic@twice-basic-defer-mmap: - Statuses : 9 pass(s) - Exec time: [0.01, 0.03] s * igt@xe_exec_basic@twice-rebind: - Statuses : 9 pass(s) - Exec time: [0.01, 0.05] s * igt@xe_exec_basic@twice-userptr: - Statuses : 9 pass(s) - Exec time: [0.01, 0.04] s * igt@xe_exec_basic@twice-userptr-invalidate: - Statuses : 9 pass(s) - Exec time: [0.01, 0.06] s * igt@xe_exec_basic@twice-userptr-rebind: - Statuses : 9 pass(s) - Exec time: [0.01, 0.04] s * igt@xe_exec_compute_mode@twice-basic: - Statuses : 8 pass(s) - Exec time: [0.01, 0.04] s * igt@xe_exec_compute_mode@twice-preempt-fence-early: - Statuses : 8 pass(s) - Exec time: [0.01, 0.04] s * igt@xe_exec_compute_mode@twice-rebind: - Statuses : 8 pass(s) - Exec time: [0.01, 0.05] s * igt@xe_exec_compute_mode@twice-userptr: - Statuses : 8 pass(s) - Exec time: [0.01, 0.05] s * igt@xe_exec_compute_mode@twice-userptr-invalidate: - Statuses : 8 pass(s) - Exec time: [1.08, 1.91] s * igt@xe_exec_compute_mode@twice-userptr-rebind: - Statuses : 8 pass(s) - Exec time: [0.01, 0.05] s * igt@xe_exec_fault_mode@many-basic: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.07] s * igt@xe_exec_fault_mode@twice-basic: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.05] s * igt@xe_exec_fault_mode@twice-basic-prefetch: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.04] s * igt@xe_exec_fault_mode@twice-invalid-fault: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.04] s * igt@xe_exec_fault_mode@twice-invalid-userptr-fault: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.03] s * igt@xe_exec_fault_mode@twice-rebind: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.06] s * igt@xe_exec_fault_mode@twice-rebind-prefetch: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.05] s * igt@xe_exec_fault_mode@twice-userptr: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.04] s * igt@xe_exec_fault_mode@twice-userptr-invalidate: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.05] s * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.05] s * igt@xe_exec_fault_mode@twice-userptr-prefetch: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.03] s * igt@xe_exec_fault_mode@twice-userptr-rebind: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.04] s * igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.05] s * igt@xe_exec_reset@close-fd-no-exec: - Statuses : 8 pass(s) - Exec time: [0.69, 1.37] s * igt@xe_exec_reset@cm-close-fd-no-exec: - Statuses : 8 pass(s) - Exec time: [0.68, 1.37] s * igt@xe_exec_reset@virtual-close-fd-no-exec: - Statuses : 8 pass(s) - Exec time: [0.00, 0.43] s * igt@xe_exec_threads@threads-basic: - Statuses : 8 pass(s) - Exec time: [0.14, 0.45] s * igt@xe_exec_threads@threads-mixed-basic: - Statuses : 8 pass(s) - Exec time: [0.12, 0.41] s * igt@xe_exec_threads@threads-mixed-fd-basic: - Statuses : 8 pass(s) - Exec time: [0.12, 0.35] s * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - Statuses : 8 pass(s) - Exec time: [0.12, 0.65] s * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race: - Statuses : 8 pass(s) - Exec time: [0.10, 0.68] s * igt@xe_exec_threads@threads-mixed-userptr-invalidate: - Statuses : 8 pass(s) - Exec time: [0.61, 1.13] s * igt@xe_huc_copy@huc_copy: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_mmap@system: - Statuses : 8 pass(s) - Exec time: [0.0, 0.00] s * igt@xe_mmap@vram: - Statuses : 5 pass(s) 3 skip(s) - Exec time: [0.0, 0.00] s * igt@xe_mmap@vram-system: - Statuses : 8 pass(s) - Exec time: [0.0, 0.00] s * igt@xe_prime_self_import@basic-with_fd_dup: - Statuses : 8 pass(s) - Exec time: [0.00, 1.42] s * igt@xe_prime_self_import@basic-with_one_bo: - Statuses : 8 pass(s) - Exec time: [0.01, 3.86] s * igt@xe_query@query-config: - Statuses : 8 pass(s) - Exec time: [0.0] s * igt@xe_query@query-engines: - Statuses : 8 pass(s) - Exec time: [0.0] s * igt@xe_query@query-hwconfig: - Statuses : 8 pass(s) - Exec time: [0.0, 0.00] s * igt@xe_query@query-invalid-query: - Statuses : 8 pass(s) - Exec time: [0.0] s * igt@xe_query@query-invalid-size: - Statuses : 8 pass(s) - Exec time: [0.0] s * igt@xe_query@query-mem-usage: - Statuses : 8 pass(s) - Exec time: [0.0] s * igt@xe_query@query-topology: - Statuses : 8 pass(s) - Exec time: [0.0, 0.00] s * igt@xe_vm@large-split-binds-268435456: - Statuses : 8 pass(s) - Exec time: [0.01, 0.05] s * igt@xe_vm@munmap-style-unbind-end: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-front: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-one-partial: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-userptr-end: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-userptr-front: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-userptr-inval-end: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-userptr-inval-front: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@munmap-style-unbind-userptr-one-partial: - Statuses : 8 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_vm@shared-pde-page: - Statuses : 8 pass(s) - Exec time: [0.02, 0.09] s * igt@xe_vm@shared-pde2-page: - Statuses : 8 pass(s) - Exec time: [0.02, 0.12] s * igt@xe_vm@shared-pde3-page: - Statuses : 8 pass(s) - Exec time: [0.02, 0.10] s * igt@xe_vm@shared-pte-page: - Statuses : 8 pass(s) - Exec time: [0.03, 0.10] s Known issues ------------ Here are the changes found in XEIGTPW_12782_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#4491]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [Intel XE#4491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4491 Build changes ------------- * IGT: IGT_8275 -> IGTPW_12782 IGTPW_12782: 12782 IGT_8275: a851348546d61620c263d3292148f67620efa7d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2824-deccd667e475e826a1cdd91ab9aec4f897bd30c4: deccd667e475e826a1cdd91ab9aec4f897bd30c4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/index.html [-- Attachment #2: Type: text/html, Size: 15161 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ i915.CI.BAT: failure for lib/iga64: miscelanious improvements 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda ` (4 preceding siblings ...) 2025-03-15 2:23 ` ✓ Xe.CI.BAT: success for lib/iga64: miscelanious improvements Patchwork @ 2025-03-15 2:40 ` Patchwork 2025-03-24 13:33 ` Kamil Konieczny 2025-03-15 12:07 ` ✗ Xe.CI.Full: " Patchwork 6 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2025-03-15 2:40 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2733 bytes --] == Series Details == Series: lib/iga64: miscelanious improvements URL : https://patchwork.freedesktop.org/series/146324/ State : failure == Summary == CI Bug Log - changes from IGT_8275 -> IGTPW_12782 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12782 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12782, 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_12782/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12782: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-adls-6: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8275/bat-adls-6/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/bat-adls-6/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12782 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@evict: - bat-mtlp-9: [PASS][3] -> [INCOMPLETE][4] ([i915#12445]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8275/bat-mtlp-9/igt@i915_selftest@live@evict.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/bat-mtlp-9/igt@i915_selftest@live@evict.html * igt@kms_chamelium_frames@dp-crc-fast: - bat-dg2-13: [PASS][5] -> [DMESG-WARN][6] ([i915#13733]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8275/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13733 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8275 -> IGTPW_12782 CI-20190529: 20190529 CI_DRM_16292: deccd667e475e826a1cdd91ab9aec4f897bd30c4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12782: 12782 IGT_8275: a851348546d61620c263d3292148f67620efa7d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/index.html [-- Attachment #2: Type: text/html, Size: 3397 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: ✗ i915.CI.BAT: failure for lib/iga64: miscelanious improvements 2025-03-15 2:40 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-03-24 13:33 ` Kamil Konieczny 0 siblings, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-03-24 13:33 UTC (permalink / raw) To: igt-dev; +Cc: Andrzej Hajda Hi igt-dev, On 2025-03-15 at 02:40:10 -0000, Patchwork wrote: > == Series Details == > > Series: lib/iga64: miscelanious improvements > URL : https://patchwork.freedesktop.org/series/146324/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8275 -> IGTPW_12782 > ==================================================== > > Summary > ------- > > **FAILURE** > Unrelated to compute change (shaders), no need for re-run. Regards, Kamil > Serious unknown changes coming with IGTPW_12782 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12782, 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_12782/index.html > > Participating hosts (44 -> 43) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12782: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live: > - bat-adls-6: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8275/bat-adls-6/igt@i915_selftest@live.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/bat-adls-6/igt@i915_selftest@live.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12782 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@i915_selftest@live@evict: > - bat-mtlp-9: [PASS][3] -> [INCOMPLETE][4] ([i915#12445]) +1 other test incomplete > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8275/bat-mtlp-9/igt@i915_selftest@live@evict.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/bat-mtlp-9/igt@i915_selftest@live@evict.html > > * igt@kms_chamelium_frames@dp-crc-fast: > - bat-dg2-13: [PASS][5] -> [DMESG-WARN][6] ([i915#13733]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8275/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html > > > [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 > [i915#13733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13733 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_8275 -> IGTPW_12782 > > CI-20190529: 20190529 > CI_DRM_16292: deccd667e475e826a1cdd91ab9aec4f897bd30c4 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12782: 12782 > IGT_8275: a851348546d61620c263d3292148f67620efa7d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12782/index.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.Full: failure for lib/iga64: miscelanious improvements 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda ` (5 preceding siblings ...) 2025-03-15 2:40 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-03-15 12:07 ` Patchwork 2025-03-24 13:35 ` Kamil Konieczny 6 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2025-03-15 12:07 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 75371 bytes --] == Series Details == Series: lib/iga64: miscelanious improvements URL : https://patchwork.freedesktop.org/series/146324/ State : failure == Summary == CI Bug Log - changes from XEIGT_8275_full -> XEIGTPW_12782_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12782_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12782_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12782_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-2: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-2.html * igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1: - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1.html Known issues ------------ Here are the changes found in XEIGTPW_12782_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#623]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1466]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#911]) +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#873]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#664]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-transition-nonblocking: - shard-bmg: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#2613]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_atomic_transition@plane-all-transition-nonblocking.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_atomic_transition@plane-all-transition-nonblocking.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3658]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2328]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#619]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#607]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +10 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#607]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2191]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2191]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#367]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +177 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2907]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2669]) +7 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +21 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +14 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +52 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3432]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#3432]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#3124]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#1727] / [Intel XE#3113]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#4417]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4416]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4416]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +12 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_chamelium_audio@dp-audio.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#373]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2325]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#306]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2252]) +12 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2341]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2390]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#307]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#307]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3278]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_content_protection@uevent.html - shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#1188]) +1 other test fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1424]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2320]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#308]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2321]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2321]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][67] -> [SKIP][68] ([Intel XE#309]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#309]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#323]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#323]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2286]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#3226]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2291]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#309]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2291]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4302]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#3009]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-4/igt@kms_dp_aux_dev.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#4354]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-463/igt@kms_dp_link_training@non-uhbr-sst.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2244]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4422]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#4422]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4422]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#776]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2373]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#310]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-436/igt@kms_flip@2x-dpms-vs-vblank-race.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2316]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#301] / [Intel XE#3321]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#301]) +4 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2316]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1421]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#310]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#886]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#455]) +27 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1401]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#352]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#651]) +13 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2311]) +31 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#4141]) +12 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html - shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#656]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#656]) +12 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#651]) +26 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2313]) +24 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2312]) +20 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +30 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#653]) +38 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2340]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1470]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1503]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#3012]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#4298]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@kms_joiner@basic-max-non-joiner.html - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#4298]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#3012]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2925]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][127] ([Intel XE#616]) +4 other tests fail [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2493]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2493]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#2571]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2763]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2763]) +8 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +19 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#870]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1131]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#718]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#3309]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1439] / [Intel XE#3141]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#836]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +12 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2893]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1489]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2234] / [Intel XE#2850]) +18 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2414]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2330]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#3414]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1435]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1435]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-6-dp-4: - shard-dg2-set2: NOTRUN -> [ABORT][156] ([Intel XE#4540]) +1 other test abort [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-6-dp-4.html * igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-b-hdmi-a-6-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][157] ([Intel XE#4212]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-b-hdmi-a-6-dp-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][158] ([Intel XE#899]) +3 other tests fail [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2168]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_vrr@lobf.html - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1499]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#1499]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#756]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute: - shard-lnl: [PASS][163] -> [FAIL][164] ([Intel XE#4278]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1126]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2905]) +15 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2905] / [Intel XE#3889]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#2905] / [Intel XE#3889]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#2905] / [Intel XE#3889]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#2905]) +13 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#2905]) +12 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#4518]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_eudebug_sriov@deny-sriov: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#4518]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-4/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#688]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2322]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1392]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#288]) +26 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#2360]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#2229]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2229]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2459] / [Intel XE#2596]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@xe_media_fill@media-fill.html - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#560]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#560]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-4/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#512]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@xe_mmap@small-bar.html - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#512]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-6/igt@xe_mmap@small-bar.html * igt@xe_noexec_ping_pong: - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#379]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@xe_noexec_ping_pong.html * igt@xe_oa@syncs-syncobj-wait: - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@xe_oa@syncs-syncobj-wait.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#977]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#2838] / [Intel XE#979]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2236]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@xe_pat@pat-index-xelpg.html - shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#979]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html - shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#979]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2284]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#584]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-bmg: NOTRUN -> [ABORT][198] ([Intel XE#4268]) +1 other test abort [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#944]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_query@multigpu-query-engines.html - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#944]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-2/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#944]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#4130]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#3342]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#4273]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][205] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][206] +3 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][207] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][209] ([Intel XE#2291]) -> [PASS][210] +3 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][211] ([Intel XE#309]) -> [PASS][212] +3 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-dg2-set2: [SKIP][213] ([Intel XE#310]) -> [PASS][214] +4 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [SKIP][215] ([Intel XE#2316]) -> [PASS][216] +4 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][217] ([Intel XE#656]) -> [PASS][218] +5 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][219] ([Intel XE#1503]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-set2: [SKIP][221] ([Intel XE#4328]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2-set2: [SKIP][223] ([Intel XE#455]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-436/igt@kms_setmode@clone-exclusive-crtc.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [SKIP][225] ([Intel XE#1392]) -> [PASS][226] +2 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-lnl: [ABORT][227] -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_pm@s2idle-mocs: - shard-lnl: [DMESG-WARN][229] ([Intel XE#2932] / [Intel XE#4504]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-lnl-5/igt@xe_pm@s2idle-mocs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@xe_pm@s2idle-mocs.html #### Warnings #### * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][231] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#787]) +9 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][233] ([Intel XE#787]) -> [SKIP][234] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][235] ([Intel XE#4418]) -> [SKIP][236] ([Intel XE#4440]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][237] ([Intel XE#877]) -> [SKIP][238] ([Intel XE#2291]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][239] ([Intel XE#455] / [i915#3804]) -> [SKIP][240] ([i915#3804]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [FAIL][241] ([Intel XE#2882]) -> [SKIP][242] ([Intel XE#2316]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][243] ([Intel XE#310]) -> [FAIL][244] ([Intel XE#301]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][245] ([Intel XE#2311]) -> [SKIP][246] ([Intel XE#2312]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][247] ([Intel XE#656]) -> [SKIP][248] ([Intel XE#651]) +10 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][249] ([Intel XE#2312]) -> [SKIP][250] ([Intel XE#4141]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][251] ([Intel XE#4141]) -> [SKIP][252] ([Intel XE#2312]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][253] ([Intel XE#2312]) -> [SKIP][254] ([Intel XE#2311]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][255] ([Intel XE#651]) -> [SKIP][256] ([Intel XE#656]) +8 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][257] ([Intel XE#2312]) -> [SKIP][258] ([Intel XE#2313]) +7 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][259] ([Intel XE#653]) -> [SKIP][260] ([Intel XE#656]) +11 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][261] ([Intel XE#2313]) -> [SKIP][262] ([Intel XE#2312]) +7 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][263] ([Intel XE#656]) -> [SKIP][264] ([Intel XE#653]) +10 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][265] ([Intel XE#362]) -> [FAIL][266] ([Intel XE#1729]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][267] ([Intel XE#1500]) -> [SKIP][268] ([Intel XE#362]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4278 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4440 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4540 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#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#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8275 -> IGTPW_12782 IGTPW_12782: 12782 IGT_8275: a851348546d61620c263d3292148f67620efa7d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2824-deccd667e475e826a1cdd91ab9aec4f897bd30c4: deccd667e475e826a1cdd91ab9aec4f897bd30c4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/index.html [-- Attachment #2: Type: text/html, Size: 87878 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: ✗ Xe.CI.Full: failure for lib/iga64: miscelanious improvements 2025-03-15 12:07 ` ✗ Xe.CI.Full: " Patchwork @ 2025-03-24 13:35 ` Kamil Konieczny 0 siblings, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-03-24 13:35 UTC (permalink / raw) To: igt-dev; +Cc: Andrzej Hajda, I915-ci-infra Hi igt-dev, On 2025-03-15 at 12:07:44 -0000, Patchwork wrote: > == Series Details == > > Series: lib/iga64: miscelanious improvements > URL : https://patchwork.freedesktop.org/series/146324/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8275_full -> XEIGTPW_12782_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12782_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12782_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Participating hosts (4 -> 4) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_12782_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-2: > - shard-bmg: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8275/shard-bmg-7/igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-2.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-7/igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-2.html > > * igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1: > - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-bmg-6/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1.html > Unrelated as this touches only compute for DG2. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12782_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#623]) > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html > - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1466]) > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html > ...cut... > [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 > [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 > > > Build changes > ------------- > > * IGT: IGT_8275 -> IGTPW_12782 > > IGTPW_12782: 12782 > IGT_8275: a851348546d61620c263d3292148f67620efa7d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2824-deccd667e475e826a1cdd91ab9aec4f897bd30c4: deccd667e475e826a1cdd91ab9aec4f897bd30c4 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12782/index.html ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-03-24 13:35 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-14 14:59 [PATCH 0/4] lib/iga64: miscelanious improvements Andrzej Hajda 2025-03-14 14:59 ` [PATCH 1/4] lib/iga64: fix send macro for DG2 platforms Andrzej Hajda 2025-03-21 12:58 ` Zbigniew Kempczyński 2025-03-24 13:32 ` Kamil Konieczny 2025-03-14 14:59 ` [PATCH 2/4] scripts/generate_iga64_codes: make script less chatty Andrzej Hajda 2025-03-20 17:00 ` Kamil Konieczny 2025-03-14 14:59 ` [PATCH 3/4] scripts/generate_iga64_codes: fix handling empty asms Andrzej Hajda 2025-03-20 17:01 ` Kamil Konieczny 2025-03-14 14:59 ` [PATCH 4/4] scripts/generate_iga64_codes: remove parenthesis around ARG macro body Andrzej Hajda 2025-03-20 17:02 ` Kamil Konieczny 2025-03-15 2:23 ` ✓ Xe.CI.BAT: success for lib/iga64: miscelanious improvements Patchwork 2025-03-15 2:40 ` ✗ i915.CI.BAT: failure " Patchwork 2025-03-24 13:33 ` Kamil Konieczny 2025-03-15 12:07 ` ✗ Xe.CI.Full: " Patchwork 2025-03-24 13:35 ` Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox