* [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
@ 2026-03-23 7:02 Sk Anirban
2026-03-23 9:30 ` Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Sk Anirban @ 2026-03-23 7:02 UTC (permalink / raw)
To: igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar,
Sk Anirban
Fix the unit mismatch caused by interpreting seconds as milliseconds
during suspend duration calculations. Apply MSEC_PER_SEC multiplier
to ensure correct unit handling.
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel/xe_pm_residency.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index 61b63ed4f..46718a444 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
* elapsed time during suspend is approximately equal to autoresume delay
* when a full suspend cycle(SUSPEND_TEST_NONE) is used.
*/
- elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
+ elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
residency_start = read_idle_residency(fd, gt);
igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
residency_end = read_idle_residency(fd, gt);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 7:02 [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation Sk Anirban
@ 2026-03-23 9:30 ` Jani Nikula
2026-03-23 9:41 ` Anirban, Sk
2026-03-23 10:01 ` Ville Syrjälä
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Jani Nikula @ 2026-03-23 9:30 UTC (permalink / raw)
To: Sk Anirban, igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar,
Sk Anirban
On Mon, 23 Mar 2026, Sk Anirban <sk.anirban@intel.com> wrote:
> Fix the unit mismatch caused by interpreting seconds as milliseconds
> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
> to ensure correct unit handling.
>
Fixes: ?
> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> ---
> tests/intel/xe_pm_residency.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> index 61b63ed4f..46718a444 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
> * elapsed time during suspend is approximately equal to autoresume delay
> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
> */
> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
> residency_start = read_idle_residency(fd, gt);
> igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
> residency_end = read_idle_residency(fd, gt);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 9:30 ` Jani Nikula
@ 2026-03-23 9:41 ` Anirban, Sk
2026-03-23 9:54 ` Jani Nikula
2026-03-23 14:12 ` Kamil Konieczny
0 siblings, 2 replies; 12+ messages in thread
From: Anirban, Sk @ 2026-03-23 9:41 UTC (permalink / raw)
To: Jani Nikula, igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar
Hi,
On 23-03-2026 03:00 pm, Jani Nikula wrote:
> On Mon, 23 Mar 2026, Sk Anirban <sk.anirban@intel.com> wrote:
>> Fix the unit mismatch caused by interpreting seconds as milliseconds
>> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
>> to ensure correct unit handling.
>>
> Fixes: ?
The change is a part of test gap which is filed internally.
Thanks,
Anirban
>
>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>> ---
>> tests/intel/xe_pm_residency.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
>> index 61b63ed4f..46718a444 100644
>> --- a/tests/intel/xe_pm_residency.c
>> +++ b/tests/intel/xe_pm_residency.c
>> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
>> * elapsed time during suspend is approximately equal to autoresume delay
>> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
>> */
>> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
>> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
>> residency_start = read_idle_residency(fd, gt);
>> igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
>> residency_end = read_idle_residency(fd, gt);
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 9:41 ` Anirban, Sk
@ 2026-03-23 9:54 ` Jani Nikula
2026-03-23 9:58 ` Anirban, Sk
2026-03-23 14:12 ` Kamil Konieczny
1 sibling, 1 reply; 12+ messages in thread
From: Jani Nikula @ 2026-03-23 9:54 UTC (permalink / raw)
To: Anirban, Sk, igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar
On Mon, 23 Mar 2026, "Anirban, Sk" <sk.anirban@intel.com> wrote:
> Hi,
>
> On 23-03-2026 03:00 pm, Jani Nikula wrote:
>> On Mon, 23 Mar 2026, Sk Anirban <sk.anirban@intel.com> wrote:
>>> Fix the unit mismatch caused by interpreting seconds as milliseconds
>>> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
>>> to ensure correct unit handling.
>>>
>> Fixes: ?
> The change is a part of test gap which is filed internally.
No, Fixes: should point at the commit which introduced the use of the
wrong unit in the public repo.
BR,
Jani.
>
> Thanks,
>
> Anirban
>
>>
>>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>>> ---
>>> tests/intel/xe_pm_residency.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
>>> index 61b63ed4f..46718a444 100644
>>> --- a/tests/intel/xe_pm_residency.c
>>> +++ b/tests/intel/xe_pm_residency.c
>>> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
>>> * elapsed time during suspend is approximately equal to autoresume delay
>>> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
>>> */
>>> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
>>> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
>>> residency_start = read_idle_residency(fd, gt);
>>> igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
>>> residency_end = read_idle_residency(fd, gt);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 9:54 ` Jani Nikula
@ 2026-03-23 9:58 ` Anirban, Sk
0 siblings, 0 replies; 12+ messages in thread
From: Anirban, Sk @ 2026-03-23 9:58 UTC (permalink / raw)
To: Jani Nikula, igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar
Hi,
On 23-03-2026 03:24 pm, Jani Nikula wrote:
> On Mon, 23 Mar 2026, "Anirban, Sk" <sk.anirban@intel.com> wrote:
>> Hi,
>>
>> On 23-03-2026 03:00 pm, Jani Nikula wrote:
>>> On Mon, 23 Mar 2026, Sk Anirban <sk.anirban@intel.com> wrote:
>>>> Fix the unit mismatch caused by interpreting seconds as milliseconds
>>>> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
>>>> to ensure correct unit handling.
>>>>
>>> Fixes: ?
>> The change is a part of test gap which is filed internally.
> No, Fixes: should point at the commit which introduced the use of the
> wrong unit in the public repo.
>
> BR,
> Jani.
Got it. I’ll include that update in the next revision.
Thanks,
Anirban
>
>> Thanks,
>>
>> Anirban
>>
>>>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>>>> ---
>>>> tests/intel/xe_pm_residency.c | 2 +-
>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
>>>> index 61b63ed4f..46718a444 100644
>>>> --- a/tests/intel/xe_pm_residency.c
>>>> +++ b/tests/intel/xe_pm_residency.c
>>>> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
>>>> * elapsed time during suspend is approximately equal to autoresume delay
>>>> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
>>>> */
>>>> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
>>>> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
>>>> residency_start = read_idle_residency(fd, gt);
>>>> igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
>>>> residency_end = read_idle_residency(fd, gt);
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 7:02 [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation Sk Anirban
2026-03-23 9:30 ` Jani Nikula
@ 2026-03-23 10:01 ` Ville Syrjälä
2026-03-23 14:36 ` Anirban, Sk
2026-03-23 13:32 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjälä @ 2026-03-23 10:01 UTC (permalink / raw)
To: Sk Anirban
Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro,
karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
vinay.belgaumkar
On Mon, Mar 23, 2026 at 12:32:29PM +0530, Sk Anirban wrote:
> Fix the unit mismatch caused by interpreting seconds as milliseconds
> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
> to ensure correct unit handling.
>
> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> ---
> tests/intel/xe_pm_residency.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> index 61b63ed4f..46718a444 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
> * elapsed time during suspend is approximately equal to autoresume delay
> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
> */
> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
Why doesn't the test actually measure this?
> residency_start = read_idle_residency(fd, gt);
> igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
> residency_end = read_idle_residency(fd, gt);
> --
> 2.43.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 7:02 [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation Sk Anirban
2026-03-23 9:30 ` Jani Nikula
2026-03-23 10:01 ` Ville Syrjälä
@ 2026-03-23 13:32 ` Patchwork
2026-03-23 15:46 ` ✗ i915.CI.BAT: failure " Patchwork
2026-03-23 18:35 ` ✓ Xe.CI.FULL: success " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-03-23 13:32 UTC (permalink / raw)
To: Anirban, Sk; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1285 bytes --]
== Series Details ==
Series: tests/intel/xe_pm_residency: Fix suspend duration calculation
URL : https://patchwork.freedesktop.org/series/163669/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8818_BAT -> XEIGTPW_14832_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14832_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* IGT: IGT_8818 -> IGTPW_14832
IGTPW_14832: 14832
IGT_8818: 8818
xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/index.html
[-- Attachment #2: Type: text/html, Size: 1847 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 9:41 ` Anirban, Sk
2026-03-23 9:54 ` Jani Nikula
@ 2026-03-23 14:12 ` Kamil Konieczny
1 sibling, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2026-03-23 14:12 UTC (permalink / raw)
To: Anirban, Sk
Cc: Jani Nikula, igt-dev, anshuman.gupta, badal.nilawar, riana.tauro,
karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
vinay.belgaumkar
Hi Anirban,,
On 2026-03-23 at 15:11:07 +0530, Anirban, Sk wrote:
> Hi,
>
> On 23-03-2026 03:00 pm, Jani Nikula wrote:
> > On Mon, 23 Mar 2026, Sk Anirban <sk.anirban@intel.com> wrote:
> > > Fix the unit mismatch caused by interpreting seconds as milliseconds
> > > during suspend duration calculations. Apply MSEC_PER_SEC multiplier
> > > to ensure correct unit handling.
> > >
> > Fixes: ?
> The change is a part of test gap which is filed internally.
>
> Thanks,
>
> Anirban
>
Do you have a GitLab issue in public xe-kms or igt?
If yes, you could added a Link: or Closes: tag.
Regards,
Kamil
> >
> > > Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> > > ---
> > > tests/intel/xe_pm_residency.c | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> > > index 61b63ed4f..46718a444 100644
> > > --- a/tests/intel/xe_pm_residency.c
> > > +++ b/tests/intel/xe_pm_residency.c
> > > @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
> > > * elapsed time during suspend is approximately equal to autoresume delay
> > > * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
> > > */
> > > - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
> > > + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
> > > residency_start = read_idle_residency(fd, gt);
> > > igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
> > > residency_end = read_idle_residency(fd, gt);
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 10:01 ` Ville Syrjälä
@ 2026-03-23 14:36 ` Anirban, Sk
2026-03-23 15:43 ` Ville Syrjälä
0 siblings, 1 reply; 12+ messages in thread
From: Anirban, Sk @ 2026-03-23 14:36 UTC (permalink / raw)
To: Ville Syrjälä
Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro,
karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
vinay.belgaumkar
Hi,
On 23-03-2026 03:31 pm, Ville Syrjälä wrote:
> On Mon, Mar 23, 2026 at 12:32:29PM +0530, Sk Anirban wrote:
>> Fix the unit mismatch caused by interpreting seconds as milliseconds
>> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
>> to ensure correct unit handling.
>>
>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>> ---
>> tests/intel/xe_pm_residency.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
>> index 61b63ed4f..46718a444 100644
>> --- a/tests/intel/xe_pm_residency.c
>> +++ b/tests/intel/xe_pm_residency.c
>> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
>> * elapsed time during suspend is approximately equal to autoresume delay
>> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
>> */
>> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
>> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
> Why doesn't the test actually measure this?
Since rtcwake is being used to enter s2idle, both paths end up using a
15‑second delay as the command parameter
and this value is carried through all related calculations. Are you
suggesting switching to a monotonic clock–based approach during resume?
Thanks,
Anirban
>> residency_start = read_idle_residency(fd, gt);
>> igt_system_suspend_autoresume(SUSPEND_STATE_FREEZE, SUSPEND_TEST_NONE);
>> residency_end = read_idle_residency(fd, gt);
>> --
>> 2.43.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 14:36 ` Anirban, Sk
@ 2026-03-23 15:43 ` Ville Syrjälä
0 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjälä @ 2026-03-23 15:43 UTC (permalink / raw)
To: Anirban, Sk
Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro,
karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
vinay.belgaumkar
On Mon, Mar 23, 2026 at 08:06:44PM +0530, Anirban, Sk wrote:
> Hi,
>
> On 23-03-2026 03:31 pm, Ville Syrjälä wrote:
> > On Mon, Mar 23, 2026 at 12:32:29PM +0530, Sk Anirban wrote:
> >> Fix the unit mismatch caused by interpreting seconds as milliseconds
> >> during suspend duration calculations. Apply MSEC_PER_SEC multiplier
> >> to ensure correct unit handling.
> >>
> >> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> >> ---
> >> tests/intel/xe_pm_residency.c | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> >> index 61b63ed4f..46718a444 100644
> >> --- a/tests/intel/xe_pm_residency.c
> >> +++ b/tests/intel/xe_pm_residency.c
> >> @@ -223,7 +223,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
> >> * elapsed time during suspend is approximately equal to autoresume delay
> >> * when a full suspend cycle(SUSPEND_TEST_NONE) is used.
> >> */
> >> - elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE);
> >> + elapsed_ms = igt_get_autoresume_delay(SUSPEND_STATE_FREEZE) * MSEC_PER_SEC;
> > Why doesn't the test actually measure this?
>
> Since rtcwake is being used to enter s2idle, both paths end up using a
> 15‑second delay as the command parameter
>
> and this value is carried through all related calculations. Are you
> suggesting switching to a monotonic clock–based approach during resume?
CLOCK_BOOTTIME
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 7:02 [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation Sk Anirban
` (2 preceding siblings ...)
2026-03-23 13:32 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-03-23 15:46 ` Patchwork
2026-03-23 18:35 ` ✓ Xe.CI.FULL: success " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-03-23 15:46 UTC (permalink / raw)
To: Anirban, Sk; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3705 bytes --]
== Series Details ==
Series: tests/intel/xe_pm_residency: Fix suspend duration calculation
URL : https://patchwork.freedesktop.org/series/163669/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8818 -> IGTPW_14832
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14832 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14832, 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_14832/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 bat-apl-1 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14832:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gt_lrc:
- bat-arlh-3: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8818/bat-arlh-3/igt@i915_selftest@live@gt_lrc.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/bat-arlh-3/igt@i915_selftest@live@gt_lrc.html
Known issues
------------
Here are the changes found in IGTPW_14832 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8818/bat-dg2-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/bat-dg2-8/igt@i915_selftest@live.html
- bat-arlh-3: [PASS][5] -> [INCOMPLETE][6] ([i915#15622])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8818/bat-arlh-3/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8818/bat-arls-5/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8818/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [FAIL][11] ([i915#14867]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8818/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#15622]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15622
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8818 -> IGTPW_14832
CI-20190529: 20190529
CI_DRM_18191: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14832: 14832
IGT_8818: 8818
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14832/index.html
[-- Attachment #2: Type: text/html, Size: 4552 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/xe_pm_residency: Fix suspend duration calculation
2026-03-23 7:02 [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation Sk Anirban
` (3 preceding siblings ...)
2026-03-23 15:46 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2026-03-23 18:35 ` Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-03-23 18:35 UTC (permalink / raw)
To: Anirban, Sk; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 37079 bytes --]
== Series Details ==
Series: tests/intel/xe_pm_residency: Fix suspend duration calculation
URL : https://patchwork.freedesktop.org/series/163669/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8818_FULL -> XEIGTPW_14832_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14832_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- shard-bmg: [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#7445])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367] / [Intel XE#7354])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2390] / [Intel XE#6974])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#6707] / [Intel XE#7439])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2291]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#4294])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2316]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2312]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4141]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#6312])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2350] / [Intel XE#7503])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#7308])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#1503])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@kms_hdr@static-swap.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#6901])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@kms_joiner@basic-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7283])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1489]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-10/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][41] -> [FAIL][42] ([Intel XE#2142]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_configfs@ctx-restore-mid-bb:
- shard-bmg: [PASS][43] -> [ABORT][44] ([Intel XE#7578])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@xe_configfs@ctx-restore-mid-bb.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-6/igt@xe_configfs@ctx-restore-mid-bb.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7636]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2322] / [Intel XE#7372])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7136]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_multi_queue@two-queues-close-fd:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6874]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-close-fd.html
* igt@xe_exec_system_allocator@many-large-malloc-fork-read:
- shard-bmg: [PASS][49] -> [ABORT][50] ([Intel XE#5545])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@xe_exec_system_allocator@many-large-malloc-fork-read.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@xe_exec_system_allocator@many-large-malloc-fork-read.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7138]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@xe_mmap@small-bar.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4733] / [Intel XE#7417])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#944])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: [PASS][55] -> [FAIL][56] ([Intel XE#5937]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#6569])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][59] ([Intel XE#7621]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][61] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][63] ([Intel XE#2291]) -> [PASS][64] +3 other tests pass
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [DMESG-WARN][65] ([Intel XE#5354]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][67] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][68] +1 other test pass
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][69] ([Intel XE#1340]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][71] ([Intel XE#2373] / [Intel XE#7344]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][73] ([Intel XE#2316]) -> [PASS][74] +3 other tests pass
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][75] ([Intel XE#7086]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][77] ([Intel XE#4596]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][79] ([Intel XE#2571] / [Intel XE#7343]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][81] ([Intel XE#4459]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [SKIP][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108]) ([Intel XE#2457] / [Intel XE#7405]) -> ([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], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-1/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-1/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-9/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-9/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-9/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-1/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-10/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-2/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-10/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-10/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-6/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-6/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-10/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-10/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-6/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-6/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-4/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@xe_module_load@load.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][132] ([Intel XE#6569]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html
#### Warnings ####
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [FAIL][134] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][135] ([Intel XE#7642]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][136] ([Intel XE#7642]) -> [FAIL][137] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_content_protection@srm.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][138] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][139] ([Intel XE#7642])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@kms_content_protection@uevent.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [SKIP][140] ([Intel XE#7642]) -> [FAIL][141] ([Intel XE#6707] / [Intel XE#7439])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2311]) +12 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][144] ([Intel XE#2312]) -> [SKIP][145] ([Intel XE#4141]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][146] ([Intel XE#4141]) -> [SKIP][147] ([Intel XE#2312]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][148] ([Intel XE#2311]) -> [SKIP][149] ([Intel XE#2312]) +12 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][150] ([Intel XE#2313]) -> [SKIP][151] ([Intel XE#2312]) +16 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][152] ([Intel XE#2312]) -> [SKIP][153] ([Intel XE#2313]) +12 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][154] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][155] ([Intel XE#4596]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-yf.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][156] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][157] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: [SKIP][158] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][159] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8818/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-90.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[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#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[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#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#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[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#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8818 -> IGTPW_14832
IGTPW_14832: 14832
IGT_8818: 8818
xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14832/index.html
[-- Attachment #2: Type: text/html, Size: 42133 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-03-23 18:35 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-23 7:02 [PATCH] tests/intel/xe_pm_residency: Fix suspend duration calculation Sk Anirban
2026-03-23 9:30 ` Jani Nikula
2026-03-23 9:41 ` Anirban, Sk
2026-03-23 9:54 ` Jani Nikula
2026-03-23 9:58 ` Anirban, Sk
2026-03-23 14:12 ` Kamil Konieczny
2026-03-23 10:01 ` Ville Syrjälä
2026-03-23 14:36 ` Anirban, Sk
2026-03-23 15:43 ` Ville Syrjälä
2026-03-23 13:32 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-23 15:46 ` ✗ i915.CI.BAT: failure " Patchwork
2026-03-23 18:35 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox