* [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags
@ 2025-01-30 22:14 Daniele Ceraolo Spurio
2025-01-30 22:14 ` [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number Daniele Ceraolo Spurio
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-01-30 22:14 UTC (permalink / raw)
To: igt-dev; +Cc: Daniele Ceraolo Spurio, Alan Previn, Ashutosh Dixit
PXP adds several new UAPI flags, which cause the IGTs considering those
flags as invalid to fail. Therefore, ahead of merging the PXP kernel
series (which is fully reviewed and ready to go [1]), update the
IGT tests to not expect the new flags to be invalid to avoid the
failures showing up in BAT.
Note that the changes in this series have been extracted from the
bigger PXP test series [2], and the r-bs have been kept from there on
the 2nd and 3rd patch as they're unchanged.
[1] https://patchwork.freedesktop.org/series/136052/
[2] https://patchwork.freedesktop.org/series/142450/
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Daniele Ceraolo Spurio (3):
tests/intel/xe_vm: Update first invalid flag number
tests/intel/xe_create: Stop treating the extension field as MBZ
tests/intel/xe_exec_queue_property: Update first invalid property
value
tests/intel/xe_create.c | 5 -----
tests/intel/xe_exec_queue_property.c | 2 +-
tests/intel/xe_vm.c | 2 +-
3 files changed, 2 insertions(+), 7 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
@ 2025-01-30 22:14 ` Daniele Ceraolo Spurio
2025-01-30 22:36 ` Dixit, Ashutosh
2025-01-30 22:14 ` [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ Daniele Ceraolo Spurio
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-01-30 22:14 UTC (permalink / raw)
To: igt-dev; +Cc: Daniele Ceraolo Spurio
PXP introduces a new valid flag [1], so to avoid the invalid_flag test
failing we need to prepare by shifting the first invalid bit left by one.
The testing of the valid flag will be added later once the PXP kernel side
is merged.
[1] https://patchwork.freedesktop.org/patch/634550/
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
---
tests/intel/xe_vm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index 6ee3f4634..0730dd3d3 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -2234,7 +2234,7 @@ static void bind_flag_invalid(int fd)
syncobj_reset(fd, &sync[0].handle, 1);
/* Using invalid flags should not work */
- bind.bind.flags = 1 << 4;
+ bind.bind.flags = 1 << 5;
igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
2025-01-30 22:14 ` [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number Daniele Ceraolo Spurio
@ 2025-01-30 22:14 ` Daniele Ceraolo Spurio
2025-01-31 12:59 ` Kamil Konieczny
2025-01-30 22:14 ` [PATCH i-g-t 3/3] tests/intel/xe_exec_queue_property: Update first invalid property value Daniele Ceraolo Spurio
` (3 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-01-30 22:14 UTC (permalink / raw)
To: igt-dev; +Cc: Daniele Ceraolo Spurio, Alan Previn
A new extension for the xe_create ioctl will be added to support PXP [1],
so in preparation for that to be merged stop expecting the field to always
be zero.
[1] https://patchwork.freedesktop.org/patch/634550/
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
tests/intel/xe_create.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
index e3be6b774..e3ebb9fd4 100644
--- a/tests/intel/xe_create.c
+++ b/tests/intel/xe_create.c
@@ -243,11 +243,6 @@ static void create_invalid_mbz(int fd)
gem_close(fd, create.handle);
create.handle = 0;
- /* No supported extensions yet */
- create.extensions = -1;
- igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
- create.extensions = 0;
-
/* Make sure KMD rejects non-zero padding/reserved fields */
for (i = 0; i < ARRAY_SIZE(create.pad); i++) {
create.pad[i] = -1;
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_exec_queue_property: Update first invalid property value
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
2025-01-30 22:14 ` [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number Daniele Ceraolo Spurio
2025-01-30 22:14 ` [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ Daniele Ceraolo Spurio
@ 2025-01-30 22:14 ` Daniele Ceraolo Spurio
2025-01-30 23:07 ` ✓ Xe.CI.BAT: success for Prepare for new PXP UAPI flags Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-01-30 22:14 UTC (permalink / raw)
To: igt-dev; +Cc: Daniele Ceraolo Spurio, Alan Previn
A new property will be added to support PXP [1], so we need to update
the invalid property testing to start from the next ID to avoid it from
failing once the PXP code is merged.
No new subtests are required to test the new property as that will be
covered by the PXP tests.
[1] https://patchwork.freedesktop.org/patch/634546/
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
tests/intel/xe_exec_queue_property.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_exec_queue_property.c b/tests/intel/xe_exec_queue_property.c
index 25a7e7abb..885d5bcc9 100644
--- a/tests/intel/xe_exec_queue_property.c
+++ b/tests/intel/xe_exec_queue_property.c
@@ -183,7 +183,7 @@ static void invalid_property(int xe)
/* This will fail as soon as a new property is introduced. It is
* expected and the test will have to be updated. */
- for (int i = 2; i < 16; i++ ) {
+ for (int i = 3; i < 16; i++ ) {
ext.property = i;
igt_assert_eq(__xe_exec_queue_create(xe, vm, 1, 1, &instance,
to_user_pointer(&ext), &exec_queue_id), -EINVAL);
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number
2025-01-30 22:14 ` [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number Daniele Ceraolo Spurio
@ 2025-01-30 22:36 ` Dixit, Ashutosh
0 siblings, 0 replies; 11+ messages in thread
From: Dixit, Ashutosh @ 2025-01-30 22:36 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: igt-dev
On Thu, 30 Jan 2025 14:14:55 -0800, Daniele Ceraolo Spurio wrote:
>
> PXP introduces a new valid flag [1], so to avoid the invalid_flag test
> failing we need to prepare by shifting the first invalid bit left by one.
> The testing of the valid flag will be added later once the PXP kernel side
> is merged.
>
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> [1] https://patchwork.freedesktop.org/patch/634550/
> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> ---
> tests/intel/xe_vm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
> index 6ee3f4634..0730dd3d3 100644
> --- a/tests/intel/xe_vm.c
> +++ b/tests/intel/xe_vm.c
> @@ -2234,7 +2234,7 @@ static void bind_flag_invalid(int fd)
> syncobj_reset(fd, &sync[0].handle, 1);
>
> /* Using invalid flags should not work */
> - bind.bind.flags = 1 << 4;
> + bind.bind.flags = 1 << 5;
> igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Prepare for new PXP UAPI flags
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
` (2 preceding siblings ...)
2025-01-30 22:14 ` [PATCH i-g-t 3/3] tests/intel/xe_exec_queue_property: Update first invalid property value Daniele Ceraolo Spurio
@ 2025-01-30 23:07 ` Patchwork
2025-01-30 23:20 ` ✗ i915.CI.BAT: failure " Patchwork
2025-01-31 3:48 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-30 23:07 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3175 bytes --]
== Series Details ==
Series: Prepare for new PXP UAPI flags
URL : https://patchwork.freedesktop.org/series/144158/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8218_BAT -> XEIGTPW_12522_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_12522_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_exec_basic@twice-bindexecqueue-rebind:
- bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970] / [Intel XE#4078]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8218 -> IGTPW_12522
* Linux: xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b -> xe-2577-54974a9354d844eca54feeec70870790fac17160
IGTPW_12522: 12522
IGT_8218: fafef52e0a83fec5f8c4f8df851d27319467762b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b: c2a5da40b8b1c5af77dcdabed8516069949fea3b
xe-2577-54974a9354d844eca54feeec70870790fac17160: 54974a9354d844eca54feeec70870790fac17160
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/index.html
[-- Attachment #2: Type: text/html, Size: 4137 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.BAT: failure for Prepare for new PXP UAPI flags
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
` (3 preceding siblings ...)
2025-01-30 23:07 ` ✓ Xe.CI.BAT: success for Prepare for new PXP UAPI flags Patchwork
@ 2025-01-30 23:20 ` Patchwork
2025-01-31 3:48 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-30 23:20 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3336 bytes --]
== Series Details ==
Series: Prepare for new PXP UAPI flags
URL : https://patchwork.freedesktop.org/series/144158/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8218 -> IGTPW_12522
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12522 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12522, 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_12522/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_12522:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12522/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-1: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8218/bat-twl-1/igt@i915_selftest@live@gt_mocs.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12522/bat-twl-1/igt@i915_selftest@live@gt_mocs.html
Known issues
------------
Here are the changes found in IGTPW_12522 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- fi-pnv-d510: NOTRUN -> [SKIP][4] +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12522/fi-pnv-d510/igt@debugfs_test@basic-hwmon.html
* igt@gem_exec_gttfill@basic:
- fi-pnv-d510: NOTRUN -> [ABORT][5] ([i915#13169])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12522/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
#### Possible fixes ####
* igt@i915_module_load@load:
- fi-pnv-d510: [ABORT][6] ([i915#13203]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8218/fi-pnv-d510/igt@i915_module_load@load.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12522/fi-pnv-d510/igt@i915_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13169
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8218 -> IGTPW_12522
* Linux: CI_DRM_16041 -> CI_DRM_16046
CI-20190529: 20190529
CI_DRM_16041: c2a5da40b8b1c5af77dcdabed8516069949fea3b @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16046: 54974a9354d844eca54feeec70870790fac17160 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12522: 12522
IGT_8218: fafef52e0a83fec5f8c4f8df851d27319467762b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12522/index.html
[-- Attachment #2: Type: text/html, Size: 4013 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Prepare for new PXP UAPI flags
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
` (4 preceding siblings ...)
2025-01-30 23:20 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-01-31 3:48 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-31 3:48 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 74583 bytes --]
== Series Details ==
Series: Prepare for new PXP UAPI flags
URL : https://patchwork.freedesktop.org/series/144158/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8218_full -> XEIGTPW_12522_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12522_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12522_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_12522_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-7/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_content_protection@legacy.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-dg2-set2: [PASS][6] -> [DMESG-WARN][7] +2 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@kms_flip@dpms-vs-vblank-race.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_flip@dpms-vs-vblank-race.html
#### Warnings ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][8] ([Intel XE#1033]) -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
Known issues
------------
Here are the changes found in XEIGTPW_12522_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#873])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#3768])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#664])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2370])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1407]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#610])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +11 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/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:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1467])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#610])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2191])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1512])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +174 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +10 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#3432])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][38] ([Intel XE#1727] / [Intel XE#3113])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][39] ([Intel XE#3124] / [Intel XE#4010])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#314]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2325])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#306])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#373]) +10 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][47] ([Intel XE#1178])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@legacy:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3278])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1178]) +2 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#323])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2425])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#1340])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([i915#3804])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4156])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2375])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2316])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#2882])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1421]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3321])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#4172]) +48 other tests dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-dg2-set2: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2955])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_flip@2x-flip-vs-rmfb.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [ABORT][74] ([Intel XE#2625])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a2-dp2.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#2882])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#2882]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a2-dp2.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#2316]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@kms_flip@2x-plain-flip-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][82] ([Intel XE#886]) +2 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#455]) +17 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397] / [Intel XE#1745])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1397])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#352]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2311]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4141])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#656]) +15 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +28 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#651]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2352])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1469])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +22 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2313]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1470])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: NOTRUN -> [DMESG-WARN][100] ([Intel XE#4172]) +1 other test dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-set2: [PASS][101] -> [ABORT][102] ([Intel XE#2625]) +1 other test abort
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_hdr@static-toggle-suspend.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [ABORT][103] ([Intel XE#2625] / [Intel XE#4048])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-2.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][104] -> [SKIP][105] ([Intel XE#3012])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2925]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#356])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][108] ([Intel XE#1033] / [Intel XE#2566])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_plane@pixel-format-source-clamping.html
- shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#2566] / [Intel XE#4172]) +1 other test dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#616]) +3 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +8 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#870])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#870])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1129])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1489]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2893])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1406]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2939])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3414]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][127] -> [FAIL][128] ([Intel XE#2883]) +6 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@kms_setmode@basic.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1435]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][130] -> [FAIL][131] ([Intel XE#2883]) +6 other tests fail
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#2883]) +2 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#362])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@accuracy-idle:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][135] ([Intel XE#1033]) +16 other tests dmesg-warn
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][136] ([Intel XE#1522]) +1 other test fail
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#756])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1123])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug@basic-client-th:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +9 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][142] ([Intel XE#1033] / [Intel XE#1473])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict@evict-small-external-cm:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#688]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-5/igt@xe_evict@evict-small-external-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2322]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-dg2-set2: [PASS][145] -> [SKIP][146] ([Intel XE#1392])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1392]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1392])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +21 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1192] / [Intel XE#3026])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-6/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#1192])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@xe_live_ktest@xe_migrate.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1192])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][154] ([Intel XE#1999])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_reset_kunit:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][155] ([Intel XE#1033]) +1 other test dmesg-fail
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_reset_kunit.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#378])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@xe_module_load@force-load.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1337])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#977])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [PASS][160] -> [DMESG-WARN][161] ([Intel XE#1616] / [Intel XE#4172])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#1358] / [Intel XE#1794])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#584]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-4/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][166] ([Intel XE#1033] / [Intel XE#569])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][167] -> [DMESG-WARN][168] ([Intel XE#1033] / [Intel XE#2280])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_pm@s4-vm-bind-userptr.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy:
- shard-dg2-set2: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#1033]) +78 other tests dmesg-warn
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#944])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-1/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#944]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#4130])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#3342])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#3342])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][176] ([Intel XE#3862]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: [SKIP][178] ([Intel XE#2291]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][180] -> [PASS][181] +3 other tests pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][182] ([Intel XE#1033]) -> [PASS][183] +58 other tests pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][184] ([Intel XE#3009]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_dp_aux_dev.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-8/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][186] ([Intel XE#3321]) -> [PASS][187] +3 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][188] ([Intel XE#301]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][190] ([Intel XE#2316]) -> [PASS][191] +2 other tests pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][192] ([Intel XE#886]) -> [PASS][193] +4 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][194] ([Intel XE#4172]) -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
- shard-dg2-set2: [DMESG-FAIL][196] ([Intel XE#1033]) -> [PASS][197] +1 other test pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-dg2-set2: [DMESG-WARN][198] ([Intel XE#1033] / [Intel XE#2566]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2-set2: [FAIL][200] -> [PASS][201] +1 other test pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_pm_dc@dc5-dpms-negative.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_sequence@get-idle:
- shard-bmg: [DMESG-WARN][202] ([Intel XE#4172]) -> [PASS][203] +72 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-2/igt@kms_sequence@get-idle.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_sequence@get-idle.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][204] ([Intel XE#1435]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][206] ([Intel XE#2159]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-large-cm:
- shard-dg2-set2: [DMESG-WARN][208] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_evict@evict-large-cm.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1392]) -> [PASS][211] +5 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_capture@reset:
- shard-bmg: [INCOMPLETE][212] ([Intel XE#4172]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@xe_exec_capture@reset.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@xe_exec_capture@reset.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [SKIP][236], [PASS][237], [PASS][238]) ([Intel XE#378]) -> ([PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-434/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_module_load@load.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][263] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][264] +2 other tests pass
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@xe_pm@s3-exec-after.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][265] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][267] ([Intel XE#1358]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_pm@s4-basic.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-466/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [ABORT][269] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-2/igt@xe_pm@s4-exec-after.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-6/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][271] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-2/igt@xe_pm@s4-mocs.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-lnl-4/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][273] ([Intel XE#1033] / [Intel XE#2280]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][275] ([Intel XE#2341]) -> [FAIL][276] ([Intel XE#1178])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][277] ([Intel XE#2316]) -> [FAIL][278] ([Intel XE#2882])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [DMESG-WARN][279] ([Intel XE#4172]) -> [SKIP][280] ([Intel XE#2316])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [DMESG-FAIL][281] ([Intel XE#4172]) -> [FAIL][282] ([Intel XE#3321])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][283] ([Intel XE#2311]) -> [SKIP][284] ([Intel XE#2312]) +10 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][285] ([Intel XE#2312]) -> [SKIP][286] ([Intel XE#4141]) +7 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][287] ([Intel XE#4141]) -> [SKIP][288] ([Intel XE#2312]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2-set2: [ABORT][289] ([Intel XE#2625]) -> [DMESG-WARN][290] ([Intel XE#1033])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][291] ([Intel XE#2312]) -> [SKIP][292] ([Intel XE#2311]) +12 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][293] ([Intel XE#2313]) -> [SKIP][294] ([Intel XE#2312]) +9 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#2313]) +11 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [ABORT][297] ([Intel XE#2625] / [Intel XE#4080]) -> [ABORT][298] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4080]) +1 other test abort
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][299] ([Intel XE#1729]) -> [SKIP][300] ([Intel XE#2426])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [ABORT][301] ([Intel XE#2625] / [Intel XE#4057]) -> [DMESG-WARN][302] ([Intel XE#1033])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-463/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][303] ([Intel XE#1033] / [Intel XE#569]) -> [ABORT][304] ([Intel XE#1358])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[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#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048
[Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057
[Intel XE#4080]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4080
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8218 -> IGTPW_12522
* Linux: xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b -> xe-2577-54974a9354d844eca54feeec70870790fac17160
IGTPW_12522: 12522
IGT_8218: fafef52e0a83fec5f8c4f8df851d27319467762b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b: c2a5da40b8b1c5af77dcdabed8516069949fea3b
xe-2577-54974a9354d844eca54feeec70870790fac17160: 54974a9354d844eca54feeec70870790fac17160
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12522/index.html
[-- Attachment #2: Type: text/html, Size: 88347 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ
2025-01-30 22:14 ` [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ Daniele Ceraolo Spurio
@ 2025-01-31 12:59 ` Kamil Konieczny
2025-01-31 17:09 ` Daniele Ceraolo Spurio
0 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2025-01-31 12:59 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: igt-dev, Alan Previn
Hi Daniele,
On 2025-01-30 at 14:14:56 -0800, Daniele Ceraolo Spurio wrote:
> A new extension for the xe_create ioctl will be added to support PXP [1],
> so in preparation for that to be merged stop expecting the field to always
> be zero.
>
> [1] https://patchwork.freedesktop.org/patch/634550/
Please add also lore.kernel.org link (could be done at merge)
here and in next patch, Thanks!
Regards,
Kamil
> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
> ---
> tests/intel/xe_create.c | 5 -----
> 1 file changed, 5 deletions(-)
>
> diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
> index e3be6b774..e3ebb9fd4 100644
> --- a/tests/intel/xe_create.c
> +++ b/tests/intel/xe_create.c
> @@ -243,11 +243,6 @@ static void create_invalid_mbz(int fd)
> gem_close(fd, create.handle);
> create.handle = 0;
>
> - /* No supported extensions yet */
> - create.extensions = -1;
> - igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> - create.extensions = 0;
> -
> /* Make sure KMD rejects non-zero padding/reserved fields */
> for (i = 0; i < ARRAY_SIZE(create.pad); i++) {
> create.pad[i] = -1;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ
2025-01-31 12:59 ` Kamil Konieczny
@ 2025-01-31 17:09 ` Daniele Ceraolo Spurio
2025-01-31 17:28 ` Kamil Konieczny
0 siblings, 1 reply; 11+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-01-31 17:09 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Alan Previn
On 1/31/2025 4:59 AM, Kamil Konieczny wrote:
> Hi Daniele,
> On 2025-01-30 at 14:14:56 -0800, Daniele Ceraolo Spurio wrote:
>> A new extension for the xe_create ioctl will be added to support PXP [1],
>> so in preparation for that to be merged stop expecting the field to always
>> be zero.
>>
>> [1] https://patchwork.freedesktop.org/patch/634550/
> Please add also lore.kernel.org link (could be done at merge)
> here and in next patch, Thanks!
Should I just replace this link instead of adding a new one?
Thanks,
Daniele
>
> Regards,
> Kamil
>
>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>> Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
>> ---
>> tests/intel/xe_create.c | 5 -----
>> 1 file changed, 5 deletions(-)
>>
>> diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
>> index e3be6b774..e3ebb9fd4 100644
>> --- a/tests/intel/xe_create.c
>> +++ b/tests/intel/xe_create.c
>> @@ -243,11 +243,6 @@ static void create_invalid_mbz(int fd)
>> gem_close(fd, create.handle);
>> create.handle = 0;
>>
>> - /* No supported extensions yet */
>> - create.extensions = -1;
>> - igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
>> - create.extensions = 0;
>> -
>> /* Make sure KMD rejects non-zero padding/reserved fields */
>> for (i = 0; i < ARRAY_SIZE(create.pad); i++) {
>> create.pad[i] = -1;
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ
2025-01-31 17:09 ` Daniele Ceraolo Spurio
@ 2025-01-31 17:28 ` Kamil Konieczny
0 siblings, 0 replies; 11+ messages in thread
From: Kamil Konieczny @ 2025-01-31 17:28 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: igt-dev, Alan Previn
Hi Daniele,
On 2025-01-31 at 09:09:43 -0800, Daniele Ceraolo Spurio wrote:
>
>
> On 1/31/2025 4:59 AM, Kamil Konieczny wrote:
> > Hi Daniele,
> > On 2025-01-30 at 14:14:56 -0800, Daniele Ceraolo Spurio wrote:
> > > A new extension for the xe_create ioctl will be added to support PXP [1],
> > > so in preparation for that to be merged stop expecting the field to always
> > > be zero.
> > >
> > > [1] https://patchwork.freedesktop.org/patch/634550/
> > Please add also lore.kernel.org link (could be done at merge)
> > here and in next patch, Thanks!
>
> Should I just replace this link instead of adding a new one?
Write both links or only lore, up to you.
Please note that sometimes links get lost so it could help giving
also a subject of patch(series) (for example above in next line
after [1]).
Regards,
Kamil
>
> Thanks,
> Daniele
>
> >
> > Regards,
> > Kamil
> >
> > > Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> > > Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
> > > ---
> > > tests/intel/xe_create.c | 5 -----
> > > 1 file changed, 5 deletions(-)
> > >
> > > diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
> > > index e3be6b774..e3ebb9fd4 100644
> > > --- a/tests/intel/xe_create.c
> > > +++ b/tests/intel/xe_create.c
> > > @@ -243,11 +243,6 @@ static void create_invalid_mbz(int fd)
> > > gem_close(fd, create.handle);
> > > create.handle = 0;
> > > - /* No supported extensions yet */
> > > - create.extensions = -1;
> > > - igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> > > - create.extensions = 0;
> > > -
> > > /* Make sure KMD rejects non-zero padding/reserved fields */
> > > for (i = 0; i < ARRAY_SIZE(create.pad); i++) {
> > > create.pad[i] = -1;
> > > --
> > > 2.43.0
> > >
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-01-31 17:29 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-30 22:14 [PATCH i-g-t 0/3] Prepare for new PXP UAPI flags Daniele Ceraolo Spurio
2025-01-30 22:14 ` [PATCH i-g-t 1/3] tests/intel/xe_vm: Update first invalid flag number Daniele Ceraolo Spurio
2025-01-30 22:36 ` Dixit, Ashutosh
2025-01-30 22:14 ` [PATCH i-g-t 2/3] tests/intel/xe_create: Stop treating the extension field as MBZ Daniele Ceraolo Spurio
2025-01-31 12:59 ` Kamil Konieczny
2025-01-31 17:09 ` Daniele Ceraolo Spurio
2025-01-31 17:28 ` Kamil Konieczny
2025-01-30 22:14 ` [PATCH i-g-t 3/3] tests/intel/xe_exec_queue_property: Update first invalid property value Daniele Ceraolo Spurio
2025-01-30 23:07 ` ✓ Xe.CI.BAT: success for Prepare for new PXP UAPI flags Patchwork
2025-01-30 23:20 ` ✗ i915.CI.BAT: failure " Patchwork
2025-01-31 3:48 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox