* [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF
@ 2026-02-24 11:20 Nitin Gote
2026-02-24 13:20 ` Kamil Konieczny
0 siblings, 1 reply; 11+ messages in thread
From: Nitin Gote @ 2026-02-24 11:20 UTC (permalink / raw)
To: igt-dev; +Cc: michal.wajdeczko, kamil.konieczny, Nitin Gote
The ctx-restore subtests use intel_register_read() via direct MMIO
(PCI BAR) access to verify that the batch buffer wrote the expected
register values. On SR-IOV Virtual Functions (VF), only a very limited
subset of registers is accessible. Registers like 0x4F100 are not
exposed to VFs, so the read always returns 0, causing a false test
failure.
Skip all ctx-restore subtests (post-bb, mid-bb, and their invalid
variants) when the device is running in SR-IOV VF mode.
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
tests/intel/xe_configfs.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
index 0db4af201..ab55e333b 100644
--- a/tests/intel/xe_configfs.c
+++ b/tests/intel/xe_configfs.c
@@ -409,6 +409,7 @@ int igt_main()
igt_describe("Validate ctx_restore_post_bb with invalid options");
igt_subtest("ctx-restore-post-bb-invalid") {
+ igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore_invalid(configfs_device_fd, "post");
close_configfs_group(configfs_fd, configfs_device_fd);
@@ -416,6 +417,7 @@ int igt_main()
igt_describe("Validate ctx_restore_post_bb");
igt_subtest("ctx-restore-post-bb") {
+ igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore(configfs_device_fd, "post");
close_configfs_group(configfs_fd, configfs_device_fd);
@@ -423,6 +425,7 @@ int igt_main()
igt_describe("Validate ctx_restore_mid_bb with invalid options");
igt_subtest("ctx-restore-mid-bb-invalid") {
+ igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore_invalid(configfs_device_fd, "mid");
close_configfs_group(configfs_fd, configfs_device_fd);
@@ -430,6 +433,7 @@ int igt_main()
igt_describe("Validate ctx_restore_mid_bb");
igt_subtest("ctx-restore-mid-bb") {
+ igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore(configfs_device_fd, "mid");
close_configfs_group(configfs_fd, configfs_device_fd);
--
2.50.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF
2026-02-24 11:20 [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF Nitin Gote
@ 2026-02-24 13:20 ` Kamil Konieczny
2026-03-05 16:21 ` Bernatowicz, Marcin
0 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2026-02-24 13:20 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev, michal.wajdeczko, Marcin Bernatowicz, Lukasz Laguna
Hi Nitin,
On 2026-02-24 at 16:50:42 +0530, Nitin Gote wrote:
> The ctx-restore subtests use intel_register_read() via direct MMIO
> (PCI BAR) access to verify that the batch buffer wrote the expected
> register values. On SR-IOV Virtual Functions (VF), only a very limited
> subset of registers is accessible. Registers like 0x4F100 are not
> exposed to VFs, so the read always returns 0, causing a false test
> failure.
>
> Skip all ctx-restore subtests (post-bb, mid-bb, and their invalid
> variants) when the device is running in SR-IOV VF mode.
>
+cc Lukasz and Marcin
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
> tests/intel/xe_configfs.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
> index 0db4af201..ab55e333b 100644
> --- a/tests/intel/xe_configfs.c
> +++ b/tests/intel/xe_configfs.c
> @@ -409,6 +409,7 @@ int igt_main()
>
> igt_describe("Validate ctx_restore_post_bb with invalid options");
> igt_subtest("ctx-restore-post-bb-invalid") {
> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
> configfs_device_fd = create_device_configfs_group(configfs_fd);
> test_ctx_restore_invalid(configfs_device_fd, "post");
> close_configfs_group(configfs_fd, configfs_device_fd);
> @@ -416,6 +417,7 @@ int igt_main()
>
> igt_describe("Validate ctx_restore_post_bb");
> igt_subtest("ctx-restore-post-bb") {
> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
> configfs_device_fd = create_device_configfs_group(configfs_fd);
> test_ctx_restore(configfs_device_fd, "post");
> close_configfs_group(configfs_fd, configfs_device_fd);
> @@ -423,6 +425,7 @@ int igt_main()
>
> igt_describe("Validate ctx_restore_mid_bb with invalid options");
> igt_subtest("ctx-restore-mid-bb-invalid") {
> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
> configfs_device_fd = create_device_configfs_group(configfs_fd);
> test_ctx_restore_invalid(configfs_device_fd, "mid");
> close_configfs_group(configfs_fd, configfs_device_fd);
> @@ -430,6 +433,7 @@ int igt_main()
>
> igt_describe("Validate ctx_restore_mid_bb");
> igt_subtest("ctx-restore-mid-bb") {
> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
> configfs_device_fd = create_device_configfs_group(configfs_fd);
> test_ctx_restore(configfs_device_fd, "mid");
> close_configfs_group(configfs_fd, configfs_device_fd);
> --
> 2.50.1
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF
2026-02-24 13:20 ` Kamil Konieczny
@ 2026-03-05 16:21 ` Bernatowicz, Marcin
2026-03-10 4:37 ` Gote, Nitin R
0 siblings, 1 reply; 11+ messages in thread
From: Bernatowicz, Marcin @ 2026-03-05 16:21 UTC (permalink / raw)
To: Kamil Konieczny, Nitin Gote, igt-dev, michal.wajdeczko,
Lukasz Laguna
On 2/24/2026 2:20 PM, Kamil Konieczny wrote:
> Hi Nitin,
> On 2026-02-24 at 16:50:42 +0530, Nitin Gote wrote:
>> The ctx-restore subtests use intel_register_read() via direct MMIO
>> (PCI BAR) access to verify that the batch buffer wrote the expected
>> register values. On SR-IOV Virtual Functions (VF), only a very limited
>> subset of registers is accessible. Registers like 0x4F100 are not
>> exposed to VFs, so the read always returns 0, causing a false test
>> failure.
>>
>> Skip all ctx-restore subtests (post-bb, mid-bb, and their invalid
>> variants) when the device is running in SR-IOV VF mode.
Does it mean the feature is not applicable to VFs or just the
verification is a bit harder ?
> +cc Lukasz and Marcin
>
>> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
>> ---
>> tests/intel/xe_configfs.c | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
>> index 0db4af201..ab55e333b 100644
>> --- a/tests/intel/xe_configfs.c
>> +++ b/tests/intel/xe_configfs.c
>> @@ -409,6 +409,7 @@ int igt_main()
>>
>> igt_describe("Validate ctx_restore_post_bb with invalid options");
>> igt_subtest("ctx-restore-post-bb-invalid") {
>> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
>> configfs_device_fd = create_device_configfs_group(configfs_fd);
>> test_ctx_restore_invalid(configfs_device_fd, "post");
>> close_configfs_group(configfs_fd, configfs_device_fd);
>> @@ -416,6 +417,7 @@ int igt_main()
>>
>> igt_describe("Validate ctx_restore_post_bb");
>> igt_subtest("ctx-restore-post-bb") {
>> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
>> configfs_device_fd = create_device_configfs_group(configfs_fd);
>> test_ctx_restore(configfs_device_fd, "post");
>> close_configfs_group(configfs_fd, configfs_device_fd);
>> @@ -423,6 +425,7 @@ int igt_main()
>>
>> igt_describe("Validate ctx_restore_mid_bb with invalid options");
>> igt_subtest("ctx-restore-mid-bb-invalid") {
>> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
>> configfs_device_fd = create_device_configfs_group(configfs_fd);
>> test_ctx_restore_invalid(configfs_device_fd, "mid");
>> close_configfs_group(configfs_fd, configfs_device_fd);
>> @@ -430,6 +433,7 @@ int igt_main()
>>
>> igt_describe("Validate ctx_restore_mid_bb");
>> igt_subtest("ctx-restore-mid-bb") {
>> + igt_require_f(!is_vf_device, "ctx-restore not supported in VF\n");
>> configfs_device_fd = create_device_configfs_group(configfs_fd);
>> test_ctx_restore(configfs_device_fd, "mid");
>> close_configfs_group(configfs_fd, configfs_device_fd);
>> --
>> 2.50.1
>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF
2026-03-05 16:21 ` Bernatowicz, Marcin
@ 2026-03-10 4:37 ` Gote, Nitin R
2026-03-16 9:10 ` Bernatowicz, Marcin
0 siblings, 1 reply; 11+ messages in thread
From: Gote, Nitin R @ 2026-03-10 4:37 UTC (permalink / raw)
To: Bernatowicz, Marcin, Kamil Konieczny,
igt-dev@lists.freedesktop.org, Wajdeczko, Michal, Laguna, Lukasz
Hi Marcin,
> -----Original Message-----
> From: Bernatowicz, Marcin <marcin.bernatowicz@linux.intel.com>
> Sent: Thursday, March 5, 2026 9:51 PM
> To: Kamil Konieczny <kamil.konieczny@linux.intel.com>; Gote, Nitin R
> <nitin.r.gote@intel.com>; igt-dev@lists.freedesktop.org; Wajdeczko, Michal
> <Michal.Wajdeczko@intel.com>; Laguna, Lukasz <lukasz.laguna@intel.com>
> Subject: Re: [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV
> VF
>
>
> On 2/24/2026 2:20 PM, Kamil Konieczny wrote:
> > Hi Nitin,
> > On 2026-02-24 at 16:50:42 +0530, Nitin Gote wrote:
> >> The ctx-restore subtests use intel_register_read() via direct MMIO
> >> (PCI BAR) access to verify that the batch buffer wrote the expected
> >> register values. On SR-IOV Virtual Functions (VF), only a very
> >> limited subset of registers is accessible. Registers like 0x4F100 are
> >> not exposed to VFs, so the read always returns 0, causing a false
> >> test failure.
> >>
> >> Skip all ctx-restore subtests (post-bb, mid-bb, and their invalid
> >> variants) when the device is running in SR-IOV VF mode.
> Does it mean the feature is not applicable to VFs or just the verification is a bit
> harder ?
The ctx-restore feature itself works on VFs -- the GuC handles context
save/restore for VFs just like the PF. The issue is strictly with the
test's verification method.
The test uses intel_register_read() via direct PCI BAR MMIO to read
back register 0x4F100, which is blocked by the HW MMIO filter on VFs.
I looked into alternatives but couldn't find a suitable VF-accessible
register -- the VF MMIO filter only exposes IRQ registers
(0x190010-0x1900f4) and VF_SW_FLAG registers (0x190240), which are
used by GuC communication and not suitable as test scratch.
Given there's no VF-safe register available, I think the skip with an
accurate message seems like the correct approach:
igt_require_f(!is_vf_device,
"MMIO register readback not possible on VF\n");
Please let me know if you'd prefer a different approach.
Thank you.
- Nitin
> > +cc Lukasz and Marcin
> >
> >> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> >> ---
> >> tests/intel/xe_configfs.c | 4 ++++
> >> 1 file changed, 4 insertions(+)
> >>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF
2026-03-10 4:37 ` Gote, Nitin R
@ 2026-03-16 9:10 ` Bernatowicz, Marcin
0 siblings, 0 replies; 11+ messages in thread
From: Bernatowicz, Marcin @ 2026-03-16 9:10 UTC (permalink / raw)
To: Gote, Nitin R, Kamil Konieczny, igt-dev@lists.freedesktop.org,
Wajdeczko, Michal, Laguna, Lukasz
On 3/10/2026 5:37 AM, Gote, Nitin R wrote:
> Hi Marcin,
>
>> -----Original Message-----
>> From: Bernatowicz, Marcin <marcin.bernatowicz@linux.intel.com>
>> Sent: Thursday, March 5, 2026 9:51 PM
>> To: Kamil Konieczny <kamil.konieczny@linux.intel.com>; Gote, Nitin R
>> <nitin.r.gote@intel.com>; igt-dev@lists.freedesktop.org; Wajdeczko, Michal
>> <Michal.Wajdeczko@intel.com>; Laguna, Lukasz <lukasz.laguna@intel.com>
>> Subject: Re: [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV
>> VF
>>
>>
>> On 2/24/2026 2:20 PM, Kamil Konieczny wrote:
>>> Hi Nitin,
>>> On 2026-02-24 at 16:50:42 +0530, Nitin Gote wrote:
>>>> The ctx-restore subtests use intel_register_read() via direct MMIO
>>>> (PCI BAR) access to verify that the batch buffer wrote the expected
>>>> register values. On SR-IOV Virtual Functions (VF), only a very
>>>> limited subset of registers is accessible. Registers like 0x4F100 are
>>>> not exposed to VFs, so the read always returns 0, causing a false
>>>> test failure.
>>>>
>>>> Skip all ctx-restore subtests (post-bb, mid-bb, and their invalid
>>>> variants) when the device is running in SR-IOV VF mode.
>> Does it mean the feature is not applicable to VFs or just the verification is a bit
>> harder ?
> The ctx-restore feature itself works on VFs -- the GuC handles context
> save/restore for VFs just like the PF. The issue is strictly with the
> test's verification method.
>
> The test uses intel_register_read() via direct PCI BAR MMIO to read
> back register 0x4F100, which is blocked by the HW MMIO filter on VFs.
> I looked into alternatives but couldn't find a suitable VF-accessible
> register -- the VF MMIO filter only exposes IRQ registers
> (0x190010-0x1900f4) and VF_SW_FLAG registers (0x190240), which are
> used by GuC communication and not suitable as test scratch.
>
> Given there's no VF-safe register available, I think the skip with an
> accurate message seems like the correct approach:
>
> igt_require_f(!is_vf_device,
> "MMIO register readback not possible on VF\n");
I do not see a better way, so let skip
NIT: igt_skip_on(is_vf_device, ...) reads a bit easier
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
>
> Please let me know if you'd prefer a different approach.
> Thank you.
>
> - Nitin
>
>>> +cc Lukasz and Marcin
>>>
>>>> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
>>>> ---
>>>> tests/intel/xe_configfs.c | 4 ++++
>>>> 1 file changed, 4 insertions(+)
>>>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF
@ 2026-03-16 10:31 Nitin Gote
2026-03-17 5:08 ` ✓ Xe.CI.BAT: success for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Nitin Gote @ 2026-03-16 10:31 UTC (permalink / raw)
To: igt-dev, marcin.bernatowicz
Cc: lukasz.laguna, michal.wajdeczko, kamil.konieczny, Nitin Gote
The ctx-restore subtests use intel_register_read() via direct MMIO
(PCI BAR) access to verify that the batch buffer wrote the expected
register values. On SR-IOV Virtual Functions (VF), only a very limited
subset of registers is accessible. Registers like 0x4F100 are not
exposed to VFs, so the read always returns 0, causing a false test
failure.
Skip all ctx-restore subtests (post-bb, mid-bb, and their invalid
variants) when the device is running in SR-IOV VF mode.
v2: Use igt_skip_on_f instead of igt_require_f, reads better (Marcin)
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
tests/intel/xe_configfs.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
index 0db4af201..755524e7c 100644
--- a/tests/intel/xe_configfs.c
+++ b/tests/intel/xe_configfs.c
@@ -409,6 +409,7 @@ int igt_main()
igt_describe("Validate ctx_restore_post_bb with invalid options");
igt_subtest("ctx-restore-post-bb-invalid") {
+ igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore_invalid(configfs_device_fd, "post");
close_configfs_group(configfs_fd, configfs_device_fd);
@@ -416,6 +417,7 @@ int igt_main()
igt_describe("Validate ctx_restore_post_bb");
igt_subtest("ctx-restore-post-bb") {
+ igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore(configfs_device_fd, "post");
close_configfs_group(configfs_fd, configfs_device_fd);
@@ -423,6 +425,7 @@ int igt_main()
igt_describe("Validate ctx_restore_mid_bb with invalid options");
igt_subtest("ctx-restore-mid-bb-invalid") {
+ igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore_invalid(configfs_device_fd, "mid");
close_configfs_group(configfs_fd, configfs_device_fd);
@@ -430,6 +433,7 @@ int igt_main()
igt_describe("Validate ctx_restore_mid_bb");
igt_subtest("ctx-restore-mid-bb") {
+ igt_skip_on_f(is_vf_device, "MMIO register readback not possible on VF\n");
configfs_device_fd = create_device_configfs_group(configfs_fd);
test_ctx_restore(configfs_device_fd, "mid");
close_configfs_group(configfs_fd, configfs_device_fd);
--
2.50.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
2026-03-16 10:31 [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF Nitin Gote
@ 2026-03-17 5:08 ` Patchwork
2026-03-17 11:19 ` ✓ i915.CI.BAT: " Patchwork
2026-03-18 9:46 ` ✗ Xe.CI.FULL: failure " Patchwork
2 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-17 5:08 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2719 bytes --]
== Series Details ==
Series: tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
URL : https://patchwork.freedesktop.org/series/162056/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8806_BAT -> XEIGTPW_14776_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14776_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][3] -> [TIMEOUT][4] ([Intel XE#6506])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][5] -> [FAIL][6] ([Intel XE#6520])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/bat-dg2-oem2/igt@xe_waitfence@reltime.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][7] ([Intel XE#7483]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8806 -> IGTPW_14776
* Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-4732-72df5434544ebbfc63b3649354fb0276b9b4db6a
IGTPW_14776: 14776
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
xe-4732-72df5434544ebbfc63b3649354fb0276b9b4db6a: 72df5434544ebbfc63b3649354fb0276b9b4db6a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/index.html
[-- Attachment #2: Type: text/html, Size: 3452 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
2026-03-16 10:31 [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF Nitin Gote
2026-03-17 5:08 ` ✓ Xe.CI.BAT: success for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2) Patchwork
@ 2026-03-17 11:19 ` Patchwork
2026-03-18 9:46 ` ✗ Xe.CI.FULL: failure " Patchwork
2 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-17 11:19 UTC (permalink / raw)
To: Gote, Nitin R; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3940 bytes --]
== Series Details ==
Series: tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
URL : https://patchwork.freedesktop.org/series/162056/
State : success
== Summary ==
CI Bug Log - changes from IGT_8806 -> IGTPW_14776
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-rkl-11600 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14776 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +80 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][7] -> [SKIP][8] ([i915#13030])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][9] -> [DMESG-WARN][10] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-8/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-arls-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8806 -> IGTPW_14776
* Linux: CI_DRM_18160 -> CI_DRM_18161
CI-20190529: 20190529
CI_DRM_18160: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18161: 72df5434544ebbfc63b3649354fb0276b9b4db6a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14776: 14776
IGT_8806: 8806
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14776/index.html
[-- Attachment #2: Type: text/html, Size: 4997 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
2026-03-16 10:31 [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF Nitin Gote
2026-03-17 5:08 ` ✓ Xe.CI.BAT: success for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2) Patchwork
2026-03-17 11:19 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-18 9:46 ` Patchwork
2026-03-18 11:17 ` Gote, Nitin R
2 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2026-03-18 9:46 UTC (permalink / raw)
To: Gote, Nitin R; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 52239 bytes --]
== Series Details ==
Series: tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
URL : https://patchwork.freedesktop.org/series/162056/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8806_FULL -> XEIGTPW_14776_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14776_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14776_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14776_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@write:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@fbdev@write.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@fbdev@write.html
* igt@xe_exec_system_allocator@process-many-new-nomemset:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html
Known issues
------------
Here are the changes found in XEIGTPW_14776_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][8] -> [INCOMPLETE][9] ([Intel XE#7084])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][10] ([Intel XE#7084])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2341])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2291]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2291] / [Intel XE#7343])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#7571])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4422] / [Intel XE#7442])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4156] / [Intel XE#7425])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2316]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2312])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2352] / [Intel XE#7399])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +11 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#7086])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#5020] / [Intel XE#7348])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2391] / [Intel XE#6927])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1489]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_psr@fbc-psr-basic.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6503]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1499])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2168] / [Intel XE#7444])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_vrr@lobf.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-close:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4837]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6665] / [Intel XE#6681])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#6321])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7140]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_compute_mode@twice-basic:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#6557] / [Intel XE#6703])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@xe_exec_compute_mode@twice-basic.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_compute_mode@twice-basic.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7136]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6874]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html
* igt@xe_exec_system_allocator@many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#6703]) +134 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@xe_exec_system_allocator@many-large-mmap-shared-remap-dontunmap-eocheck.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-stride-malloc-prefetch-race:
- shard-bmg: [PASS][58] -> [DMESG-FAIL][59] ([Intel XE#6652])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-prefetch-race.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-malloc-prefetch-race.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6703]) +21 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7138]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6964]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2236])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@xe_peer2peer@read.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#944])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
- shard-bmg: [INCOMPLETE][67] ([Intel XE#1727] / [Intel XE#6819] / [Intel XE#6904]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-dp-2:
- shard-bmg: [DMESG-FAIL][69] ([Intel XE#1727] / [Intel XE#6819]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-dp-2.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][71] ([Intel XE#2291]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][73] ([Intel XE#5354]) -> [PASS][74] +1 other test pass
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [SKIP][75] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][77] ([Intel XE#1340]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [SKIP][79] ([Intel XE#2316]) -> [PASS][80] +3 other tests pass
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][81] ([Intel XE#301]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [FAIL][83] ([Intel XE#3098]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][85] ([Intel XE#1503]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][87] ([Intel XE#6361]) -> [PASS][88] +2 other tests pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_setmode@basic.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][89] ([Intel XE#6361]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
- shard-lnl: [DMESG-WARN][91] -> [PASS][92] +1 other test pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-1/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-lnl-8/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
* igt@xe_exec_system_allocator@fault-benchmark:
- shard-bmg: [FAIL][93] ([Intel XE#7550]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_exec_system_allocator@fault-benchmark.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@xe_exec_system_allocator@fault-benchmark.html
* igt@xe_exec_system_allocator@many-stride-mmap-race:
- shard-bmg: [INCOMPLETE][95] -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-race.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-mmap-race.html
* igt@xe_module_load@load:
- shard-bmg: ([SKIP][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-8/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-4/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-6/igt@xe_module_load@load.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][148] ([Intel XE#6569]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][150] ([Intel XE#2327]) -> [SKIP][151] ([Intel XE#6703]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: [SKIP][152] ([Intel XE#1124]) -> [SKIP][153] ([Intel XE#6703]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: [SKIP][154] ([Intel XE#367] / [Intel XE#7354]) -> [SKIP][155] ([Intel XE#6703])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][156] ([Intel XE#2887]) -> [SKIP][157] ([Intel XE#6703]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: [SKIP][158] ([Intel XE#2252]) -> [SKIP][159] ([Intel XE#6703]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: [SKIP][160] ([Intel XE#2320]) -> [SKIP][161] ([Intel XE#6703])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: [SKIP][162] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][163] ([Intel XE#6703])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x170.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: [SKIP][164] ([Intel XE#2373] / [Intel XE#7448]) -> [SKIP][165] ([Intel XE#6703])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_feature_discovery@display-3x.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: [SKIP][166] ([Intel XE#7179]) -> [SKIP][167] ([Intel XE#6703])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: [SKIP][168] ([Intel XE#2311]) -> [SKIP][169] ([Intel XE#6703]) +7 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][170] ([Intel XE#4141]) -> [SKIP][171] ([Intel XE#2312]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][172] ([Intel XE#4141]) -> [SKIP][173] ([Intel XE#6703]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][174] ([Intel XE#2312]) -> [SKIP][175] ([Intel XE#4141]) +6 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][176] ([Intel XE#2311]) -> [SKIP][177] ([Intel XE#2312]) +9 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][178] ([Intel XE#2312]) -> [SKIP][179] ([Intel XE#2311]) +13 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][180] ([Intel XE#2313]) -> [SKIP][181] ([Intel XE#2312]) +10 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][182] ([Intel XE#2313]) -> [SKIP][183] ([Intel XE#6703]) +5 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][184] ([Intel XE#2312]) -> [SKIP][185] ([Intel XE#2313]) +16 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][186] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][187] ([Intel XE#3544])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][188] ([Intel XE#1503]) -> [SKIP][189] ([Intel XE#6703])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_hdr@static-toggle.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_hdr@static-toggle.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-bmg: [SKIP][190] ([Intel XE#7283]) -> [SKIP][191] ([Intel XE#6703])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][192] ([Intel XE#1489]) -> [SKIP][193] ([Intel XE#6703]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-bmg: [SKIP][194] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][195] ([Intel XE#6703]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@kms_psr@fbc-psr2-no-drrs.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: [SKIP][196] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][197] ([Intel XE#6703])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: [SKIP][198] ([Intel XE#2413]) -> [SKIP][199] ([Intel XE#6703])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: [SKIP][200] ([Intel XE#6503]) -> [SKIP][201] ([Intel XE#6703])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@kms_sharpness_filter@filter-toggle.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@kms_sharpness_filter@filter-toggle.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: [SKIP][202] ([Intel XE#4837]) -> [SKIP][203] ([Intel XE#6703]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_eudebug@basic-exec-queues-enable.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram:
- shard-bmg: [SKIP][204] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][205] ([Intel XE#6703])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
* igt@xe_exec_basic@multigpu-once-userptr-rebind:
- shard-bmg: [SKIP][206] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][207] ([Intel XE#6703]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_exec_basic@multigpu-once-userptr-rebind.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_basic@multigpu-once-userptr-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-prefetch:
- shard-bmg: [SKIP][208] ([Intel XE#7136]) -> [SKIP][209] ([Intel XE#6703]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_exec_fault_mode@once-multi-queue-rebind-prefetch.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- shard-bmg: [SKIP][210] ([Intel XE#6874]) -> [SKIP][211] ([Intel XE#6703]) +6 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-basic-smem.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-rebind:
- shard-bmg: [SKIP][212] ([Intel XE#7138]) -> [SKIP][213] ([Intel XE#6703]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-rebind.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-rebind.html
* igt@xe_mmap@small-bar:
- shard-bmg: [SKIP][214] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) -> [SKIP][215] ([Intel XE#6703])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_mmap@small-bar.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_mmap@small-bar.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][216] ([Intel XE#2245]) -> [SKIP][217] ([Intel XE#6703])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: [SKIP][218] ([Intel XE#944]) -> [SKIP][219] ([Intel XE#6703])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_query@multigpu-query-gt-list.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@xe_query@multigpu-query-gt-list.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[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#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6904
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7550
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8806 -> IGTPW_14776
* Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-4732-72df5434544ebbfc63b3649354fb0276b9b4db6a
IGTPW_14776: 14776
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
xe-4732-72df5434544ebbfc63b3649354fb0276b9b4db6a: 72df5434544ebbfc63b3649354fb0276b9b4db6a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/index.html
[-- Attachment #2: Type: text/html, Size: 61001 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: ✗ Xe.CI.FULL: failure for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
2026-03-18 9:46 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-18 11:17 ` Gote, Nitin R
2026-03-18 12:03 ` Ravali, JupallyX
0 siblings, 1 reply; 11+ messages in thread
From: Gote, Nitin R @ 2026-03-18 11:17 UTC (permalink / raw)
To: i915-ci-infra@lists.freedesktop.org; +Cc: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 1957 bytes --]
Hi,
Reported failures on Xe CI full runs are not related to my changes.
Could you please re-report it?
Thanks,
Nitin
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, March 18, 2026 3:17 PM
To: Gote, Nitin R <nitin.r.gote@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.FULL: failure for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
Patch Details
Series:
tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
URL:
https://patchwork.freedesktop.org/series/162056/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/index.html
CI Bug Log - changes from XEIGT_8806_FULL -> XEIGTPW_14776_FULL
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_14776_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14776_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_14776_FULL:
IGT changes
Possible regressions
* igt@fbdev@write:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@fbdev@write.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@fbdev@write.html>
* igt@xe_exec_system_allocator@process-many-new-nomemset:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html>
[-- Attachment #2: Type: text/html, Size: 18790 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: ✗ Xe.CI.FULL: failure for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
2026-03-18 11:17 ` Gote, Nitin R
@ 2026-03-18 12:03 ` Ravali, JupallyX
0 siblings, 0 replies; 11+ messages in thread
From: Ravali, JupallyX @ 2026-03-18 12:03 UTC (permalink / raw)
To: i915-ci-infra@lists.freedesktop.org; +Cc: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 2516 bytes --]
Hi,
https://patchwork.freedesktop.org/series/162056/
Xe.CI.Full - Addressed failures, Xe cannot be re-reported.
Thanks,
Ravali.
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Gote, Nitin R
Sent: 18 March 2026 16:48
To: i915-ci-infra@lists.freedesktop.org
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Xe.CI.FULL: failure for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
Hi,
Reported failures on Xe CI full runs are not related to my changes.
Could you please re-report it?
Thanks,
Nitin
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Wednesday, March 18, 2026 3:17 PM
To: Gote, Nitin R <nitin.r.gote@intel.com<mailto:nitin.r.gote@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Xe.CI.FULL: failure for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
Patch Details
Series:
tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2)
URL:
https://patchwork.freedesktop.org/series/162056/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/index.html
CI Bug Log - changes from XEIGT_8806_FULL -> XEIGTPW_14776_FULL
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_14776_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14776_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_14776_FULL:
IGT changes
Possible regressions
* igt@fbdev@write:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@fbdev@write.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-2/igt@fbdev@write.html>
* igt@xe_exec_system_allocator@process-many-new-nomemset:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14776/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html>
[-- Attachment #2: Type: text/html, Size: 21028 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-03-18 12:05 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16 10:31 [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF Nitin Gote
2026-03-17 5:08 ` ✓ Xe.CI.BAT: success for tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF (rev2) Patchwork
2026-03-17 11:19 ` ✓ i915.CI.BAT: " Patchwork
2026-03-18 9:46 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-18 11:17 ` Gote, Nitin R
2026-03-18 12:03 ` Ravali, JupallyX
-- strict thread matches above, loose matches on Subject: below --
2026-02-24 11:20 [PATCH] tests/intel/xe_configfs: Skip ctx-restore subtests on SR-IOV VF Nitin Gote
2026-02-24 13:20 ` Kamil Konieczny
2026-03-05 16:21 ` Bernatowicz, Marcin
2026-03-10 4:37 ` Gote, Nitin R
2026-03-16 9:10 ` Bernatowicz, Marcin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox