Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6
@ 2024-09-19 16:59 Rodrigo Vivi
  2024-09-19 18:35 ` Ville Syrjälä
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Rodrigo Vivi @ 2024-09-19 16:59 UTC (permalink / raw)
  To: igt-dev; +Cc: Bommithi Sakeena, Rodrigo Vivi

From: Bommithi Sakeena <bommithi.sakeena@intel.com>

Function toggle_gt_c6 has while loop iterating for (NUM_REPS +1)
times. Correct it to iterate to NUM_REPS times.

Signed-off-by: Bommithi Sakeena <bommithi.sakeena@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@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 0e687558b..f4d05889c 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -297,7 +297,7 @@ static void toggle_gt_c6(int fd, int n)
 
 		if (n == NUM_REPS)
 			measure_power(&gpu, &gt_c6_power);
-	} while (n--);
+	} while (--n);
 
 	igt_power_close(&gpu);
 	igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
-- 
2.46.0


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

* Re: [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6
  2024-09-19 16:59 [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6 Rodrigo Vivi
@ 2024-09-19 18:35 ` Ville Syrjälä
  2024-09-19 22:02   ` Rodrigo Vivi
  2024-09-20  1:42 ` ✓ CI.xeBAT: success for " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Ville Syrjälä @ 2024-09-19 18:35 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: igt-dev, Bommithi Sakeena

On Thu, Sep 19, 2024 at 12:59:50PM -0400, Rodrigo Vivi wrote:
> From: Bommithi Sakeena <bommithi.sakeena@intel.com>
> 
> Function toggle_gt_c6 has while loop iterating for (NUM_REPS +1)
> times. Correct it to iterate to NUM_REPS times.
> 
> Signed-off-by: Bommithi Sakeena <bommithi.sakeena@intel.com>
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@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 0e687558b..f4d05889c 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -297,7 +297,7 @@ static void toggle_gt_c6(int fd, int n)
>  
>  		if (n == NUM_REPS)
>  			measure_power(&gpu, &gt_c6_power);
> -	} while (n--);
> +	} while (--n);

Why isn't that just a canonical for loop?

>  
>  	igt_power_close(&gpu);
>  	igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
> -- 
> 2.46.0

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6
  2024-09-19 18:35 ` Ville Syrjälä
@ 2024-09-19 22:02   ` Rodrigo Vivi
  2024-09-25  9:17     ` Riana Tauro
  0 siblings, 1 reply; 7+ messages in thread
From: Rodrigo Vivi @ 2024-09-19 22:02 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev, Bommithi Sakeena

On Thu, Sep 19, 2024 at 09:35:48PM +0300, Ville Syrjälä wrote:
> On Thu, Sep 19, 2024 at 12:59:50PM -0400, Rodrigo Vivi wrote:
> > From: Bommithi Sakeena <bommithi.sakeena@intel.com>
> > 
> > Function toggle_gt_c6 has while loop iterating for (NUM_REPS +1)
> > times. Correct it to iterate to NUM_REPS times.
> > 
> > Signed-off-by: Bommithi Sakeena <bommithi.sakeena@intel.com>
> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@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 0e687558b..f4d05889c 100644
> > --- a/tests/intel/xe_pm_residency.c
> > +++ b/tests/intel/xe_pm_residency.c
> > @@ -297,7 +297,7 @@ static void toggle_gt_c6(int fd, int n)
> >  
> >  		if (n == NUM_REPS)
> >  			measure_power(&gpu, &gt_c6_power);
> > -	} while (n--);
> > +	} while (--n);
> 
> Why isn't that just a canonical for loop?

I honestly asked me the same question when Sakeena showed me this.
If it was in kernel I would had requested the for loop.
but given while is used in more places in IGT I liked the small
patch as possible here.

> 
> >  
> >  	igt_power_close(&gpu);
> >  	igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
> > -- 
> > 2.46.0
> 
> -- 
> Ville Syrjälä
> Intel

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

* ✓ CI.xeBAT: success for tests/xe_pm_residency: Fix while loop in toggle_gt_c6
  2024-09-19 16:59 [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6 Rodrigo Vivi
  2024-09-19 18:35 ` Ville Syrjälä
@ 2024-09-20  1:42 ` Patchwork
  2024-09-20  1:54 ` ✗ Fi.CI.BAT: failure " Patchwork
  2024-09-20  6:12 ` ✗ CI.xeFULL: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-20  1:42 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe_pm_residency: Fix while loop in toggle_gt_c6
URL   : https://patchwork.freedesktop.org/series/138874/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8028_BAT -> XEIGTPW_11767_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-lnl-1:          [FAIL][1] ([Intel XE#886]) -> [PASS][2] +1 other test pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html

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


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

  * IGT: IGT_8028 -> IGTPW_11767
  * Linux: xe-1971-2141344f9b4f0bcd6bb20a45afaef94209743c0d -> xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a

  IGTPW_11767: 11767
  IGT_8028: 8028
  xe-1971-2141344f9b4f0bcd6bb20a45afaef94209743c0d: 2141344f9b4f0bcd6bb20a45afaef94209743c0d
  xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a: d4340c1de6d417c7b3edac187c3af011b146701a

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for tests/xe_pm_residency: Fix while loop in toggle_gt_c6
  2024-09-19 16:59 [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6 Rodrigo Vivi
  2024-09-19 18:35 ` Ville Syrjälä
  2024-09-20  1:42 ` ✓ CI.xeBAT: success for " Patchwork
@ 2024-09-20  1:54 ` Patchwork
  2024-09-20  6:12 ` ✗ CI.xeFULL: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-20  1:54 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe_pm_residency: Fix while loop in toggle_gt_c6
URL   : https://patchwork.freedesktop.org/series/138874/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15440 -> IGTPW_11767
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (39 -> 38)
------------------------------

  Additional (1): fi-bsw-n3050 
  Missing    (2): fi-snb-2520m fi-kbl-8809g 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_lrc:
    - bat-twl-2:          [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-twl-2/igt@i915_selftest@live@gt_lrc.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@eof:
    - bat-arls-1:         [PASS][3] -> [DMESG-WARN][4] ([i915#12102])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-arls-1/igt@fbdev@eof.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-arls-1/igt@fbdev@eof.html

  * igt@i915_selftest@live:
    - bat-arls-1:         [PASS][5] -> [DMESG-WARN][6] ([i915#10341] / [i915#12133])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-arls-1/igt@i915_selftest@live.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-arls-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-1:         [PASS][7] -> [DMESG-WARN][8] ([i915#11349])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-arls-1/igt@i915_selftest@live@hangcheck.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-arls-1/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@workarounds:
    - bat-adlp-11:        [PASS][9] -> [INCOMPLETE][10] ([i915#9413]) +1 other test incomplete
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-adlp-11/igt@i915_selftest@live@workarounds.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-adlp-11/igt@i915_selftest@live@workarounds.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][11] +20 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/fi-bsw-n3050/igt@kms_psr@psr-primary-mmap-gtt.html

  
#### Possible fixes ####

  * igt@fbdev@info:
    - bat-arls-1:         [DMESG-WARN][12] ([i915#12102]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-arls-1/igt@fbdev@info.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-arls-1/igt@fbdev@info.html

  * igt@i915_module_load@reload:
    - fi-kbl-7567u:       [DMESG-WARN][14] ([i915#180] / [i915#1982] / [i915#9925]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/fi-kbl-7567u/igt@i915_module_load@reload.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/fi-kbl-7567u/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@module-reload:
    - fi-kbl-7567u:       [DMESG-WARN][16] ([i915#11621] / [i915#180] / [i915#1982] / [i915#9925]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@sanitycheck:
    - fi-kbl-7567u:       [DMESG-WARN][18] ([i915#11621]) -> [PASS][19] +37 other tests pass
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html

  * igt@i915_selftest@live@workarounds:
    - bat-mtlp-6:         [ABORT][20] ([i915#12061]) -> [PASS][21] +1 other test pass
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
#### Warnings ####

  * igt@i915_module_load@reload:
    - bat-apl-1:          [DMESG-WARN][22] ([i915#180]) -> [DMESG-WARN][23] ([i915#180] / [i915#1982])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-apl-1/igt@i915_module_load@reload.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-apl-1/igt@i915_module_load@reload.html
    - bat-arls-5:         [DMESG-WARN][24] ([i915#11637] / [i915#1982]) -> [DMESG-WARN][25] ([i915#11637])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15440/bat-arls-5/igt@i915_module_load@reload.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11767/bat-arls-5/igt@i915_module_load@reload.html

  
  [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
  [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
  [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
  [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12102
  [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
  [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
  [i915#9925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9925


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8028 -> IGTPW_11767

  CI-20190529: 20190529
  CI_DRM_15440: d4340c1de6d417c7b3edac187c3af011b146701a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11767: 11767
  IGT_8028: 8028

== Logs ==

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

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

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

* ✗ CI.xeFULL: failure for tests/xe_pm_residency: Fix while loop in toggle_gt_c6
  2024-09-19 16:59 [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6 Rodrigo Vivi
                   ` (2 preceding siblings ...)
  2024-09-20  1:54 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-09-20  6:12 ` Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-20  6:12 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: igt-dev

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

== Series Details ==

Series: tests/xe_pm_residency: Fix while loop in toggle_gt_c6
URL   : https://patchwork.freedesktop.org/series/138874/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8028_full -> XEIGTPW_11767_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_11767_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_11767_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_color@ctm-0-25@pipe-b-edp-1:
    - shard-lnl:          [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-5/igt@kms_color@ctm-0-25@pipe-b-edp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-1/igt@kms_color@ctm-0-25@pipe-b-edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-lnl:          [PASS][3] -> [FAIL][4] ([Intel XE#1659])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][5] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][6] ([Intel XE#1124])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#367])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#787]) +6 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#373])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#455])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-32x10.html

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

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [PASS][16] -> [FAIL][17] ([Intel XE#886]) +1 other test fail
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#1397] / [Intel XE#1745])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#1397])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#651]) +4 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#653]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#656]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#599])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#1450]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#1450] / [Intel XE#599])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#599]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-2/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][27] -> [FAIL][28] ([Intel XE#718])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [PASS][29] -> [FAIL][30] ([Intel XE#1430])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          NOTRUN -> [FAIL][31] ([Intel XE#1430])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#1122] / [Intel XE#1201])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-cursor-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#929])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-move.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#327])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#1127] / [Intel XE#1201])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_vrr@flip-basic:
    - shard-lnl:          [PASS][37] -> [FAIL][38] ([Intel XE#2443]) +5 other tests fail
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-3/igt@kms_vrr@flip-basic.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-3/igt@kms_vrr@flip-basic.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#1091] / [Intel XE#1201])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-dg2-set2:     NOTRUN -> [FAIL][40] ([Intel XE#1050])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [PASS][41] -> [TIMEOUT][42] ([Intel XE#1473])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_evict@evict-threads-large.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-466/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1392])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#288])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr-rebind-imm.html

  * igt@xe_exec_reset@gt-reset-stress:
    - shard-lnl:          [PASS][46] -> [DMESG-WARN][47] ([Intel XE#2046])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-4/igt@xe_exec_reset@gt-reset-stress.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-7/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_oa@oa-regs-whitelisted@rcs-0:
    - shard-lnl:          [PASS][48] -> [FAIL][49] ([Intel XE#2514]) +1 other test fail
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted@rcs-0.html

  * igt@xe_oa@short-reads:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#2541])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_oa@short-reads.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [PASS][51] -> [ABORT][52] ([Intel XE#1794]) +1 other test abort
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-5/igt@xe_pm@s4-vm-bind-unbind-all.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][53] -> [FAIL][54] ([Intel XE#958])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#944])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-lnl:          [PASS][56] -> [FAIL][57] ([Intel XE#2780])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-3/igt@xe_wedged@wedged-at-any-timeout.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
    - shard-lnl:          [FAIL][58] ([Intel XE#911]) -> [PASS][59] +3 other tests pass
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
    - shard-lnl:          [FAIL][60] ([Intel XE#1426]) -> [PASS][61] +1 other test pass
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [FAIL][62] ([Intel XE#1659]) -> [PASS][63] +1 other test pass
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_color@deep-color@pipe-b-edp-1-ctm:
    - shard-lnl:          [DMESG-WARN][64] -> [PASS][65] +4 other tests pass
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-2/igt@kms_color@deep-color@pipe-b-edp-1-ctm.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_color@deep-color@pipe-b-edp-1-ctm.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - {shard-bmg}:        [DMESG-WARN][66] ([Intel XE#2791] / [Intel XE#877]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
    - {shard-bmg}:        [DMESG-WARN][68] ([Intel XE#877]) -> [PASS][69] +1 other test pass
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html

  * igt@kms_flip@basic-plain-flip:
    - shard-dg2-set2:     [INCOMPLETE][70] ([Intel XE#1195]) -> [PASS][71] +1 other test pass
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@kms_flip@basic-plain-flip.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_flip@basic-plain-flip.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][72] ([Intel XE#886]) -> [PASS][73] +1 other test pass
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@b-edp1:
    - shard-lnl:          [FAIL][74] -> [PASS][75] +1 other test pass
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-4/igt@kms_flip@flip-vs-rmfb-interruptible@b-edp1.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_flip@flip-vs-rmfb-interruptible@b-edp1.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [SKIP][76] ([Intel XE#1201] / [Intel XE#455]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane@plane-position-hole:
    - shard-lnl:          [DMESG-WARN][78] ([Intel XE#324]) -> [PASS][79] +4 other tests pass
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-3/igt@kms_plane@plane-position-hole.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@kms_plane@plane-position-hole.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
    - {shard-bmg}:        [INCOMPLETE][80] ([Intel XE#2566]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
    - {shard-bmg}:        [INCOMPLETE][82] -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][84] ([Intel XE#718]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - {shard-bmg}:        [FAIL][86] ([Intel XE#2364]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - {shard-bmg}:        [FAIL][88] ([Intel XE#1000]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
    - shard-dg2-set2:     [TIMEOUT][90] ([Intel XE#1473]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-small.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_compute_mode@twice-userptr-invalidate-race:
    - shard-lnl:          [FAIL][92] ([Intel XE#1069]) -> [PASS][93] +1 other test pass
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-8/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-4/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-lnl:          [ABORT][94] ([Intel XE#1794]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-8/igt@xe_pm@s4-vm-bind-userptr.html

  
#### Warnings ####

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][96] ([Intel XE#1201] / [Intel XE#873]) -> [SKIP][97] ([Intel XE#873])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][98] ([Intel XE#316]) -> [SKIP][99] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][100] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][101] ([Intel XE#316]) +3 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-433/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][102] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][103] ([Intel XE#610])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][104] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][105] ([Intel XE#619])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][106] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][107] ([Intel XE#1124]) +5 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][108] ([Intel XE#1124]) -> [SKIP][109] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][110] ([Intel XE#367]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][112] ([Intel XE#2191]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][114] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][115] ([Intel XE#2191]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][116] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][117] ([Intel XE#367])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][118] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][119] ([Intel XE#787]) +62 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][120] ([Intel XE#787]) -> [SKIP][121] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#1252]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#1252]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][125] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][126] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][127] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][128] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][129] ([Intel XE#314])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][130] ([Intel XE#1152]) -> [SKIP][131] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-dg2-set2:     [SKIP][132] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][133] ([Intel XE#373]) +6 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@kms_chamelium_audio@dp-audio.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][134] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][135] ([Intel XE#306]) +1 other test skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@kms_chamelium_color@gamma.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][136] ([Intel XE#373]) -> [SKIP][137] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][138] ([Intel XE#307]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][140] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][141] ([Intel XE#307])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][142] ([Intel XE#308]) -> [SKIP][143] ([Intel XE#1201] / [Intel XE#308])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][145] ([Intel XE#308])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg2-set2:     [SKIP][146] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][147] ([Intel XE#323])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][148] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][149] ([Intel XE#1135])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-434/igt@kms_feature_discovery@psr1.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#455]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][153] ([Intel XE#455]) +10 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#651]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#651]) +20 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][157] ([Intel XE#651]) +18 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][159] ([Intel XE#658])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][161] ([Intel XE#653]) +20 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#653]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#653]) +21 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) -> [SKIP][165] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#1201] / [Intel XE#2763]) -> [SKIP][167] ([Intel XE#2763]) +2 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
    - shard-dg2-set2:     [SKIP][170] ([Intel XE#2763]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#2763]) +2 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#908]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#908])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][175] ([Intel XE#1489]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-434/igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1489]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@fbc-pr-dpms:
    - shard-dg2-set2:     [SKIP][178] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][179] ([Intel XE#929]) +10 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-435/igt@kms_psr@fbc-pr-dpms.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_psr@fbc-pr-dpms.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#929]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_psr@psr-dpms.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-435/igt@kms_psr@psr-dpms.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][183] ([Intel XE#1149])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][185] ([Intel XE#327]) +1 other test skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][186] ([Intel XE#1729]) -> [SKIP][187] ([Intel XE#1201] / [Intel XE#362])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_writeback@writeback-check-output:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#756]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#756])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@kms_writeback@writeback-check-output.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][191] ([Intel XE#1126]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_exec_fault_mode@twice-invalid-fault:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#288]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#288]) +14 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-466/igt@xe_exec_fault_mode@twice-invalid-fault.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][195] ([Intel XE#288]) +13 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#2360]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#2360])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][199] ([Intel XE#2360])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html

  * igt@xe_gt_freq@freq_reset_multiple:
    - shard-lnl:          [DMESG-FAIL][200] ([Intel XE#1620]) -> [FAIL][201] ([Intel XE#2711])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#512]) -> [SKIP][203] ([Intel XE#1201] / [Intel XE#512])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_mmap@small-bar.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-466/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][205] ([Intel XE#378])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@xe_module_load@load.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_module_load@load.html

  * igt@xe_oa@mmio-triggered-reports:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][207] ([Intel XE#2541]) +3 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-463/igt@xe_oa@mmio-triggered-reports.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#2541]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#2541]) +4 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][210] ([Intel XE#1201] / [Intel XE#1337]) -> [SKIP][211] ([Intel XE#1337])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][213] ([Intel XE#2284] / [Intel XE#366])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     [SKIP][214] ([Intel XE#944]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-433/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-dg2-set2:     [SKIP][216] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][217] ([Intel XE#944]) +1 other test skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8028/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11767/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
  [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
  [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
  [Intel XE#2046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2046
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2711]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2711
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780
  [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958


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

  * IGT: IGT_8028 -> IGTPW_11767
  * Linux: xe-1971-2141344f9b4f0bcd6bb20a45afaef94209743c0d -> xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a

  IGTPW_11767: 11767
  IGT_8028: 8028
  xe-1971-2141344f9b4f0bcd6bb20a45afaef94209743c0d: 2141344f9b4f0bcd6bb20a45afaef94209743c0d
  xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a: d4340c1de6d417c7b3edac187c3af011b146701a

== Logs ==

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

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

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

* Re: [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6
  2024-09-19 22:02   ` Rodrigo Vivi
@ 2024-09-25  9:17     ` Riana Tauro
  0 siblings, 0 replies; 7+ messages in thread
From: Riana Tauro @ 2024-09-25  9:17 UTC (permalink / raw)
  To: Rodrigo Vivi, Ville Syrjälä; +Cc: igt-dev, Bommithi Sakeena



On 9/20/2024 3:32 AM, Rodrigo Vivi wrote:
> On Thu, Sep 19, 2024 at 09:35:48PM +0300, Ville Syrjälä wrote:
>> On Thu, Sep 19, 2024 at 12:59:50PM -0400, Rodrigo Vivi wrote:
>>> From: Bommithi Sakeena <bommithi.sakeena@intel.com>
>>>
>>> Function toggle_gt_c6 has while loop iterating for (NUM_REPS +1)
>>> times. Correct it to iterate to NUM_REPS times.
>>>
>>> Signed-off-by: Bommithi Sakeena <bommithi.sakeena@intel.com>
>>> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@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 0e687558b..f4d05889c 100644
>>> --- a/tests/intel/xe_pm_residency.c
>>> +++ b/tests/intel/xe_pm_residency.c
>>> @@ -297,7 +297,7 @@ static void toggle_gt_c6(int fd, int n)
>>>   
>>>   		if (n == NUM_REPS)
>>>   			measure_power(&gpu, &gt_c6_power);
>>> -	} while (n--);
>>> +	} while (--n);
>>
>> Why isn't that just a canonical for loop?
> 
> I honestly asked me the same question when Sakeena showed me this.
> If it was in kernel I would had requested the for loop.
> but given while is used in more places in IGT I liked the small
> patch as possible here.

This can be converted into for loop. There was no specific reason to use 
while.

Thank you for the fix. This patch however looks good to me

Reviewed-by: Riana Tauro <riana.tauro@intel.com>
> 
>>
>>>   
>>>   	igt_power_close(&gpu);
>>>   	igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
>>> -- 
>>> 2.46.0
>>
>> -- 
>> Ville Syrjälä
>> Intel

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

end of thread, other threads:[~2024-09-25  9:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-19 16:59 [PATCH i-g-t] tests/xe_pm_residency: Fix while loop in toggle_gt_c6 Rodrigo Vivi
2024-09-19 18:35 ` Ville Syrjälä
2024-09-19 22:02   ` Rodrigo Vivi
2024-09-25  9:17     ` Riana Tauro
2024-09-20  1:42 ` ✓ CI.xeBAT: success for " Patchwork
2024-09-20  1:54 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-09-20  6:12 ` ✗ CI.xeFULL: " Patchwork

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