Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls
@ 2025-03-10 20:02 Peter Senna Tschudin
  2025-03-11  1:38 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-03-10 20:02 UTC (permalink / raw)
  To: igt-dev
  Cc: Peter Senna Tschudin, vitaly.prosyak, christian.koenig,
	alexander.deucher, jesse.zhang, harry.wentland,
	zbigniew.kempczynski, kamil.konieczny, ryszard.knop,
	lucas.demarchi, katarzyna.piecielska

Earlier versions of the code performed multiple read operations on the
kmemleak file without closing and reopening the file descriptor. To
handle this, lseek() was used to reset the read position.

However, the current implementation no longer requires these lseek()
calls, as the redundant read operations have been removed. This commit
eliminates the leftover lseek() calls that are now unnecessary.

Cc: vitaly.prosyak@amd.com
Cc: christian.koenig@amd.com
Cc: alexander.deucher@amd.com
Cc: jesse.zhang@amd.com
Cc: harry.wentland@amd.com
Cc: zbigniew.kempczynski@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: ryszard.knop@intel.com
Cc: lucas.demarchi@intel.com
Cc: katarzyna.piecielska@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
 runner/kmemleak.c | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/runner/kmemleak.c b/runner/kmemleak.c
index e1bfb65ba..e52bc12d5 100644
--- a/runner/kmemleak.c
+++ b/runner/kmemleak.c
@@ -116,9 +116,6 @@ static bool runner_kmemleak_found_leaks(void)
 
 	rlen = read(fd, buf, 1);
 
-	if (rlen == 1)
-		lseek(fd, 0, SEEK_SET);
-
 	close(fd);
 
 	return rlen == 1;
@@ -169,12 +166,6 @@ static bool runner_kmemleak_append_to(const char *last_test, int resdirfd,
 	if (kmemleakfd < 0)
 		return false;
 
-	/* Seek back to first byte */
-	if (lseek(kmemleakfd, 0, SEEK_SET) == (off_t)-1) {
-		close(kmemleakfd);
-		return false;
-	}
-
 	/* Open text file to append */
 	resfilefd = openat(resdirfd, KMEMLEAK_RESFILENAME,
 			   O_RDWR | O_CREAT | O_APPEND, 0666);
-- 
2.34.1


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

* ✓ Xe.CI.BAT: success for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
@ 2025-03-11  1:38 ` Patchwork
  2025-03-11  1:47 ` ✗ i915.CI.BAT: failure " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-11  1:38 UTC (permalink / raw)
  To: Peter Senna Tschudin; +Cc: igt-dev

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

== Series Details ==

Series: runner/kmemleak: Remove unnecessary lseek() calls
URL   : https://patchwork.freedesktop.org/series/146105/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8270_BAT -> XEIGTPW_12739_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_vm@munmap-style-unbind-userptr-front:
    - bat-adlp-vf:        NOTRUN -> [ABORT][1] ([Intel XE#4491])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/bat-adlp-vf/igt@xe_vm@munmap-style-unbind-userptr-front.html

  
#### Possible fixes ####

  * igt@xe_vm@bind-execqueues-independent:
    - bat-adlp-vf:        [ABORT][2] ([Intel XE#4491]) -> [PASS][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/bat-adlp-vf/igt@xe_vm@bind-execqueues-independent.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/bat-adlp-vf/igt@xe_vm@bind-execqueues-independent.html

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


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

  * IGT: IGT_8270 -> IGTPW_12739
  * Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2791-fd356d116b876e8778d2a52820c832f95dcdd3d5

  IGTPW_12739: 12739
  IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544
  xe-2791-fd356d116b876e8778d2a52820c832f95dcdd3d5: fd356d116b876e8778d2a52820c832f95dcdd3d5

== Logs ==

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

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

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

* ✗ i915.CI.BAT: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
  2025-03-11  1:38 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-03-11  1:47 ` Patchwork
  2025-03-11  7:10   ` Peter Senna Tschudin
  2025-03-11  9:50 ` ✓ i915.CI.BAT: success " Patchwork
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2025-03-11  1:47 UTC (permalink / raw)
  To: Peter Senna Tschudin; +Cc: igt-dev

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

== Series Details ==

Series: runner/kmemleak: Remove unnecessary lseek() calls
URL   : https://patchwork.freedesktop.org/series/146105/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8270 -> IGTPW_12739
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (44 -> 43)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live:
    - fi-tgl-1115g4:      [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/fi-tgl-1115g4/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/fi-tgl-1115g4/igt@i915_selftest@live.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-arlh-3/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-6:         [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-apl-1/igt@dmabuf@all-tests.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-apl-1/igt@dmabuf@all-tests.html

  * igt@i915_module_load@load:
    - bat-mtlp-9:         [DMESG-WARN][9] ([i915#13494]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-9/igt@i915_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-mtlp-9/igt@i915_module_load@load.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
  [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8270 -> IGTPW_12739
  * Linux: CI_DRM_16259 -> CI_DRM_16260

  CI-20190529: 20190529
  CI_DRM_16259: fd356d116b876e8778d2a52820c832f95dcdd3d5 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_16260: 9afa34d65af6f42d982c4c154121b4762e70a70a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12739: 12739
  IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: ✗ i915.CI.BAT: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-11  1:47 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-03-11  7:10   ` Peter Senna Tschudin
  2025-03-11  9:51     ` Ravali, JupallyX
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-03-11  7:10 UTC (permalink / raw)
  To: igt-dev, I915-ci-infra

Dear I15,

On 11.03.2025 02:47, Patchwork wrote:
> == Series Details ==
> 
> Series: runner/kmemleak: Remove unnecessary lseek() calls
> URL   : https://patchwork.freedesktop.org/series/146105/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8270 -> IGTPW_12739
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12739 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12739, 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_12739/index.html
> 
> Participating hosts (44 -> 43)
> ------------------------------
> 
>   Missing    (1): fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12739:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live:
>     - fi-tgl-1115g4:      [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/fi-tgl-1115g4/igt@i915_selftest@live.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/fi-tgl-1115g4/igt@i915_selftest@live.html
> These are unrelated. Please fix and resubmit.

Thank you,

Peter



[...]

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

* ✓ i915.CI.BAT: success for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
  2025-03-11  1:38 ` ✓ Xe.CI.BAT: success for " Patchwork
  2025-03-11  1:47 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-03-11  9:50 ` Patchwork
  2025-03-11 13:45 ` ✗ i915.CI.Full: failure " Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-11  9:50 UTC (permalink / raw)
  To: Peter Senna Tschudin; +Cc: igt-dev

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

== Series Details ==

Series: runner/kmemleak: Remove unnecessary lseek() calls
URL   : https://patchwork.freedesktop.org/series/146105/
State : success

== Summary ==

CI Bug Log - changes from IGT_8270 -> IGTPW_12739
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/index.html

Participating hosts (44 -> 43)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - fi-tgl-1115g4:      [PASS][1] -> [DMESG-FAIL][2] ([i915#13892]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/fi-tgl-1115g4/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/fi-tgl-1115g4/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-arlh-3/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-6:         [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-apl-1/igt@dmabuf@all-tests.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-apl-1/igt@dmabuf@all-tests.html

  * igt@i915_module_load@load:
    - bat-mtlp-9:         [DMESG-WARN][9] ([i915#13494]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-9/igt@i915_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/bat-mtlp-9/igt@i915_module_load@load.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
  [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
  [i915#13892]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13892


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8270 -> IGTPW_12739
  * Linux: CI_DRM_16259 -> CI_DRM_16260

  CI-20190529: 20190529
  CI_DRM_16259: fd356d116b876e8778d2a52820c832f95dcdd3d5 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_16260: 9afa34d65af6f42d982c4c154121b4762e70a70a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12739: 12739
  IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* RE: ✗ i915.CI.BAT: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-11  7:10   ` Peter Senna Tschudin
@ 2025-03-11  9:51     ` Ravali, JupallyX
  0 siblings, 0 replies; 14+ messages in thread
From: Ravali, JupallyX @ 2025-03-11  9:51 UTC (permalink / raw)
  To: i915-ci-infra@lists.freedesktop.org,
	igt-dev@lists.freedesktop.org

Hi,

https://patchwork.freedesktop.org/series/146105/ - Re-reported.
i915.CI.BAT - Re-reported.

Thanks,
Ravali.

-----Original Message-----
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Peter Senna Tschudin
Sent: 11 March 2025 12:40
To: igt-dev@lists.freedesktop.org; I915-ci-infra@lists.freedesktop.org
Subject: Re: ✗ i915.CI.BAT: failure for runner/kmemleak: Remove unnecessary lseek() calls

Dear I15,

On 11.03.2025 02:47, Patchwork wrote:
> == Series Details ==
> 
> Series: runner/kmemleak: Remove unnecessary lseek() calls
> URL   : https://patchwork.freedesktop.org/series/146105/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8270 -> IGTPW_12739 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12739 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12739, 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_12739/index.html
> 
> Participating hosts (44 -> 43)
> ------------------------------
> 
>   Missing    (1): fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12739:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live:
>     - fi-tgl-1115g4:      [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/fi-tgl-1115g4/igt@i915_selftest@live.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/fi-tgl-1115g4/igt
> @i915_selftest@live.html These are unrelated. Please fix and resubmit.

Thank you,

Peter



[...]

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

* ✗ i915.CI.Full: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
                   ` (2 preceding siblings ...)
  2025-03-11  9:50 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-03-11 13:45 ` Patchwork
  2025-03-11 15:21   ` Peter Senna Tschudin
  2025-03-11 21:50 ` ✗ Xe.CI.Full: " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2025-03-11 13:45 UTC (permalink / raw)
  To: Peter Senna Tschudin; +Cc: igt-dev

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

== Series Details ==

Series: runner/kmemleak: Remove unnecessary lseek() calls
URL   : https://patchwork.freedesktop.org/series/146105/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_16260_full -> IGTPW_12739_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_12739_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_12739_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.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/index.html

Participating hosts (11 -> 12)
------------------------------

  Additional (2): shard-snb-0 shard-dg2-set2 
  Missing    (1): pig-kbl-iris 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@load:
    - shard-tglu-1:       ([PASS][1], [PASS][2], [PASS][3]) -> [SKIP][4]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-1/igt@i915_module_load@load.html
    - shard-dg1:          ([PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29]) -> ([SKIP][30], [SKIP][31], [SKIP][32], [SKIP][33], [SKIP][34], [SKIP][35], [SKIP][36], [SKIP][37], [SKIP][38], [SKIP][39], [SKIP][40], [SKIP][41], [SKIP][42], [SKIP][43], [SKIP][44], [SKIP][45], [SKIP][46], [SKIP][47], [SKIP][48], [SKIP][49], [SKIP][50], [SKIP][51], [SKIP][52], [SKIP][53])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-16/igt@i915_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
    - shard-tglu:         ([PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75]) -> ([SKIP][76], [SKIP][77], [SKIP][78], [SKIP][79], [SKIP][80], [SKIP][81], [SKIP][82], [SKIP][83], [SKIP][84], [SKIP][85], [SKIP][86], [SKIP][87], [SKIP][88], [SKIP][89], [SKIP][90], [SKIP][91], [SKIP][92], [SKIP][93], [SKIP][94], [SKIP][95], [SKIP][96], [SKIP][97], [SKIP][98], [SKIP][99])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-10/igt@i915_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-9/igt@i915_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
    - shard-mtlp:         ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124]) -> ([SKIP][125], [SKIP][126], [SKIP][127], [SKIP][128], [SKIP][129], [SKIP][130], [SKIP][131], [SKIP][132], [SKIP][133], [SKIP][134], [SKIP][135], [SKIP][136], [SKIP][137], [SKIP][138], [SKIP][139], [SKIP][140], [SKIP][141], [SKIP][142], [SKIP][143], [SKIP][144], [SKIP][145], [SKIP][146], [SKIP][147], [SKIP][148], [SKIP][149])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-8/igt@i915_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-7/igt@i915_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-4/igt@i915_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
    - shard-dg2-9:        ([PASS][150], [PASS][151]) -> ([SKIP][152], [SKIP][153], [SKIP][154])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
    - shard-dg2:          ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) -> ([SKIP][178], [SKIP][179], [SKIP][180], [SKIP][181], [SKIP][182], [SKIP][183], [SKIP][184], [SKIP][185], [SKIP][186], [SKIP][187], [SKIP][188], [SKIP][189], [SKIP][190], [SKIP][191], [SKIP][192], [SKIP][193], [SKIP][194], [SKIP][195], [SKIP][196], [SKIP][197], [SKIP][198], [SKIP][199])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-8/igt@i915_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-2/igt@i915_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-1/igt@i915_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-11/igt@i915_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
    - shard-rkl:          ([PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221]) -> ([SKIP][222], [SKIP][223], [SKIP][224], [SKIP][225], [SKIP][226], [SKIP][227], [SKIP][228], [SKIP][229], [SKIP][230], [SKIP][231], [SKIP][232], [SKIP][233], [SKIP][234], [SKIP][235], [SKIP][236], [SKIP][237], [SKIP][238], [SKIP][239], [SKIP][240], [SKIP][241], [SKIP][242], [SKIP][243], [SKIP][244])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@load:
    - shard-snb:          ([PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269]) -> ([SKIP][270], [SKIP][271], [SKIP][272], [SKIP][273], [SKIP][274], [SKIP][275], [SKIP][276], [SKIP][277], [SKIP][278], [SKIP][279], [SKIP][280], [SKIP][281], [SKIP][282], [SKIP][283], [SKIP][284], [SKIP][285], [SKIP][286], [SKIP][287], [SKIP][288], [SKIP][289], [SKIP][290], [SKIP][291])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
    - shard-glk:          ([PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313]) -> ([SKIP][314], [SKIP][315], [SKIP][316], [SKIP][317], [SKIP][318], [SKIP][319], [SKIP][320], [SKIP][321], [SKIP][322], [SKIP][323], [SKIP][324], [SKIP][325], [SKIP][326], [SKIP][327], [SKIP][328], [SKIP][329], [SKIP][330], [SKIP][331], [SKIP][332], [SKIP][333], [SKIP][334], [SKIP][335], [SKIP][336])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk3/igt@i915_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk3/igt@i915_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk7/igt@i915_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk2/igt@i915_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk9/igt@i915_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk2/igt@i915_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk7/igt@i915_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk2/igt@i915_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk7/igt@i915_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk1/igt@i915_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk8/igt@i915_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk9/igt@i915_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk1/igt@i915_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk1/igt@i915_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk6/igt@i915_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk9/igt@i915_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk8/igt@i915_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk6/igt@i915_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk8/igt@i915_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk5/igt@i915_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html

  


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8270 -> IGTPW_12739
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_16260: 9afa34d65af6f42d982c4c154121b4762e70a70a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12739: 12739
  IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: ✗ i915.CI.Full: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-11 13:45 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-03-11 15:21   ` Peter Senna Tschudin
  2025-03-12  5:54     ` Ravali, JupallyX
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-03-11 15:21 UTC (permalink / raw)
  To: igt-dev, I915-ci-infra

Dear I915,

On 11.03.2025 14:45, Patchwork wrote:
> == Series Details ==
> 
> Series: runner/kmemleak: Remove unnecessary lseek() calls
> URL   : https://patchwork.freedesktop.org/series/146105/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_16260_full -> IGTPW_12739_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12739_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12739_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.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/index.html
> 
> Participating hosts (11 -> 12)
> ------------------------------
> 
>   Additional (2): shard-snb-0 shard-dg2-set2 
>   Missing    (1): pig-kbl-iris 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12739_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_module_load@load:
>     - shard-tglu-1:       ([PASS][1], [PASS][2], [PASS][3]) -> [SKIP][4]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-1/igt@i915_module_load@load.html
>     - shard-dg1:          ([PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29]) -> ([SKIP][30], [SKIP][31], [SKIP][32], [SKIP][33], [SKIP][34], [SKIP][35], [SKIP][36], [SKIP][37], [SKIP][38], [SKIP][39], [SKIP][40], [SKIP][41], [SKIP][42], [SKIP][43], [SKIP][44], [SKIP][45], [SKIP][46], [SKIP][47], [SKIP][48], [SKIP][49], [SKIP][50], [SKIP][51], [SKIP][52], [SKIP][53])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-16/igt@i915_module_load@load.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>     - shard-tglu:         ([PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75]) -> ([SKIP][76], [SKIP][77], [SKIP][78], [SKIP][79], [SKIP][80], [SKIP][81], [SKIP][82], [SKIP][83], [SKIP][84], [SKIP][85], [SKIP][86], [SKIP][87], [SKIP][88], [SKIP][89], [SKIP][90], [SKIP][91], [SKIP][92], [SKIP][93], [SKIP][94], [SKIP][95], [SKIP][96], [SKIP][97], [SKIP][98], [SKIP][99])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-10/igt@i915_module_load@load.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-9/igt@i915_module_load@load.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>     - shard-mtlp:         ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124]) -> ([SKIP][125], [SKIP][126], [SKIP][127], [SKIP][128], [SKIP][129], [SKIP][130], [SKIP][131], [SKIP][132], [SKIP][133], [SKIP][134], [SKIP][135], [SKIP][136], [SKIP][137], [SKIP][138], [SKIP][139], [SKIP][140], [SKIP][141], [SKIP][142], [SKIP][143], [SKIP][144], [SKIP][145], [SKIP][146], [SKIP][147], [SKIP][148], [SKIP][149])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-8/igt@i915_module_load@load.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-7/igt@i915_module_load@load.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-4/igt@i915_module_load@load.html
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>     - shard-dg2-9:        ([PASS][150], [PASS][151]) -> ([SKIP][152], [SKIP][153], [SKIP][154])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
>     - shard-dg2:          ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) -> ([SKIP][178], [SKIP][179], [SKIP][180], [SKIP][181], [SKIP][182], [SKIP][183], [SKIP][184], [SKIP][185], [SKIP][186], [SKIP][187], [SKIP][188], [SKIP][189], [SKIP][190], [SKIP][191], [SKIP][192], [SKIP][193], [SKIP][194], [SKIP][195], [SKIP][196], [SKIP][197], [SKIP][198], [SKIP][199])
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-8/igt@i915_module_load@load.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-2/igt@i915_module_load@load.html
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-1/igt@i915_module_load@load.html
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-11/igt@i915_module_load@load.html
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
>     - shard-rkl:          ([PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221]) -> ([SKIP][222], [SKIP][223], [SKIP][224], [SKIP][225], [SKIP][226], [SKIP][227], [SKIP][228], [SKIP][229], [SKIP][230], [SKIP][231], [SKIP][232], [SKIP][233], [SKIP][234], [SKIP][235], [SKIP][236], [SKIP][237], [SKIP][238], [SKIP][239], [SKIP][240], [SKIP][241], [SKIP][242], [SKIP][243], [SKIP][244])
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
>    [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
>    [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
> 
These are unrelated to my change. Please fix and re-run.

Thank you,

Peter

[...]

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

* ✗ Xe.CI.Full: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
                   ` (3 preceding siblings ...)
  2025-03-11 13:45 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-03-11 21:50 ` Patchwork
  2025-03-12 10:18   ` Peter Senna Tschudin
  2025-03-12  5:51 ` ✓ i915.CI.Full: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2025-03-11 21:50 UTC (permalink / raw)
  To: Peter Senna Tschudin; +Cc: igt-dev

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

== Series Details ==

Series: runner/kmemleak: Remove unnecessary lseek() calls
URL   : https://patchwork.freedesktop.org/series/146105/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8270_full -> XEIGTPW_12739_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_12739_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_12739_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_12739_full:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
    - shard-bmg:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
    - shard-dg2-set2:     [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@xe_oa@buffer-size@ccs-0-128k}:
    - shard-lnl:          NOTRUN -> [FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@xe_oa@buffer-size@ccs-0-128k.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
    - shard-lnl:          [PASS][6] -> [FAIL][7] ([Intel XE#3719] / [Intel XE#911]) +3 other tests fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#664])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][9] ([Intel XE#324]) +5 other tests dmesg-warn
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2327]) +6 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#3658])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#316]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#1407]) +7 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#1124]) +12 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2328])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#619])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#1467])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#1124]) +17 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#1124]) +13 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#2191]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2191]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1512])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#367]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#2887]) +11 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#787]) +163 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#2907])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][31] -> [INCOMPLETE][32] ([Intel XE#3862]) +1 other test incomplete
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#3432]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#3432]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2887]) +14 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3124])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][41] -> [DMESG-WARN][42] ([Intel XE#1727] / [Intel XE#3113])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2724])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#4417]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#306]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2325]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#306]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2252]) +9 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#373]) +12 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#373]) +11 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     NOTRUN -> [FAIL][51] ([Intel XE#1178]) +1 other test fail
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@kms_content_protection@atomic-dpms.html
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3278])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2390])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#307])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@uevent@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][56] ([Intel XE#1188])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2321])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2320]) +3 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#308]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#1424]) +4 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2291]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#323])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#323]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2286])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#309]) +3 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#309]) +4 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#4354])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#2244])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2244])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#4422])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#703])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#2373])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#703])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2374])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2316]) +4 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1421]) +7 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#310])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][78] -> [SKIP][79] ([Intel XE#2316]) +2 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@2x-plain-flip.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-dg2-set2:     [PASS][80] -> [SKIP][81] ([Intel XE#310]) +3 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@bo-too-big-interruptible@a-edp1:
    - shard-lnl:          NOTRUN -> [TIMEOUT][82] ([Intel XE#1504]) +1 other test timeout
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][83] -> [FAIL][84] ([Intel XE#886]) +2 other tests fail
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][85] -> [FAIL][86] ([Intel XE#301]) +3 other tests fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][87] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][88] -> [INCOMPLETE][89] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][90] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-hdmi-a6.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#1401]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2293]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#1397]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#651]) +16 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#2311]) +28 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     [PASS][99] -> [SKIP][100] ([Intel XE#656]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#2312]) +15 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#651]) +30 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2313]) +26 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#656]) +6 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#1469])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#4141]) +9 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#656]) +36 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][108] ([Intel XE#653]) +23 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2340])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_getfb@getfb2-accept-ccs.html
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#2340])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@kms_getfb@getfb2-accept-ccs.html

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

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

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#346]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][114] ([Intel XE#346])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_plane@plane-position-covered@pipe-a-plane-3:
    - shard-lnl:          [PASS][115] -> [DMESG-FAIL][116] ([Intel XE#324])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
    - shard-dg2-set2:     [PASS][117] -> [FAIL][118] ([Intel XE#616]) +1 other test fail
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html

  * igt@kms_plane_cursor@viewport:
    - shard-dg2-set2:     NOTRUN -> [FAIL][119] ([Intel XE#616]) +1 other test fail
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@kms_plane_cursor@viewport.html

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2493])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#2493])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][123] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#2763]) +15 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
    - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#2763]) +5 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2763]) +19 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#870])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][128] ([Intel XE#870]) +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#1909])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][130] -> [FAIL][131] ([Intel XE#718])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#1439] / [Intel XE#3141])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][133] ([Intel XE#1489]) +7 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#2893]) +4 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#1489]) +9 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#1128])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@pr-sprite-blt:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#1406]) +2 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_psr@pr-sprite-blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2-set2:     NOTRUN -> [SKIP][140] ([Intel XE#2939])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#2414])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-lnl:          [PASS][142] -> [DMESG-WARN][143] ([Intel XE#324])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-lnl:          NOTRUN -> [SKIP][144] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          NOTRUN -> [SKIP][145] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#1127])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#2330])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][148] ([Intel XE#1127])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][149] ([Intel XE#3414])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-dg2-set2:     NOTRUN -> [SKIP][150] ([Intel XE#455]) +10 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#1435]) +1 other test skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#1435]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][153] ([Intel XE#330])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
    - shard-lnl:          NOTRUN -> [SKIP][154] ([Intel XE#330])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][155] ([Intel XE#2450])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][156] ([Intel XE#899]) +2 other tests fail
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][157] -> [FAIL][158] ([Intel XE#4459]) +1 other test fail
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2168])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-8/igt@kms_vrr@lobf.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-bmg:          NOTRUN -> [SKIP][160] ([Intel XE#756])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][161] ([Intel XE#756]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_writeback@writeback-pixel-formats.html
    - shard-lnl:          NOTRUN -> [SKIP][162] ([Intel XE#756]) +1 other test skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][164] ([Intel XE#1123]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][165] ([Intel XE#1126])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     NOTRUN -> [SKIP][166] ([Intel XE#2905]) +9 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-bmg:          NOTRUN -> [SKIP][167] ([Intel XE#2905] / [Intel XE#3889])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#2905]) +11 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
    - shard-lnl:          NOTRUN -> [SKIP][169] ([Intel XE#688]) +5 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - shard-dg2-set2:     [PASS][170] -> [SKIP][171] ([Intel XE#1392]) +5 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#2322]) +6 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][173] ([Intel XE#1392]) +5 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][174] ([Intel XE#288]) +25 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#2360])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][176] ([Intel XE#2905]) +13 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#2229])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][178] ([Intel XE#2229])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_mmap@pci-membarrier-bad-pagesize:
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#4045])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@xe_mmap@pci-membarrier-bad-pagesize.html

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][180] ([Intel XE#378])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_module_load@force-load.html
    - shard-lnl:          NOTRUN -> [SKIP][181] ([Intel XE#378])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@xe_module_load@force-load.html

  * igt@xe_oa@mi-rpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][182] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@xe_oa@mi-rpc.html

  * igt@xe_oa@syncs-ufence-wait:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][184] ([Intel XE#2236])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@xe_pat@pat-index-xelpg.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][185] ([Intel XE#979])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_peer2peer@write:
    - shard-lnl:          NOTRUN -> [SKIP][186] ([Intel XE#1061])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@xe_peer2peer@write.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][187] ([Intel XE#1173]) +1 other test fail
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     NOTRUN -> [SKIP][188] ([Intel XE#2284] / [Intel XE#366])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][189] ([Intel XE#2284]) +1 other test skip
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s3-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][190] ([Intel XE#584]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-bmg:          NOTRUN -> [ABORT][191] ([Intel XE#4268]) +1 other test abort
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html
    - shard-dg2-set2:     NOTRUN -> [ABORT][192] ([Intel XE#4268])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-lnl:          NOTRUN -> [ABORT][193] ([Intel XE#4268])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_query@multigpu-query-engines:
    - shard-lnl:          NOTRUN -> [SKIP][194] ([Intel XE#944]) +4 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][195] ([Intel XE#944]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-topology:
    - shard-dg2-set2:     NOTRUN -> [SKIP][196] ([Intel XE#944]) +1 other test skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@xe_query@multigpu-query-topology.html

  * igt@xe_sriov_auto_provisioning@selfconfig-basic:
    - shard-bmg:          NOTRUN -> [SKIP][197] ([Intel XE#4130])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][198] ([Intel XE#4130])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][199] ([Intel XE#4130])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@xe_sriov_auto_provisioning@selfconfig-basic.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          NOTRUN -> [SKIP][200] ([Intel XE#3342])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-lnl:          [PASS][201] -> [ABORT][202] ([Intel XE#3084])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html

  
#### Possible fixes ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][203] ([Intel XE#3862]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-bmg:          [SKIP][205] ([Intel XE#2291]) -> [PASS][206] +1 other test pass
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#309]) -> [PASS][208] +4 other tests pass
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2-set2:     [SKIP][209] ([Intel XE#310]) -> [PASS][210] +1 other test pass
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     [INCOMPLETE][211] ([Intel XE#2049]) -> [PASS][212] +1 other test pass
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          [SKIP][213] ([Intel XE#2316]) -> [PASS][214] +3 other tests pass
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
    - shard-dg2-set2:     [FAIL][215] ([Intel XE#301]) -> [PASS][216] +3 other tests pass
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][217] ([Intel XE#656]) -> [PASS][218] +4 other tests pass
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-dg2-set2:     [SKIP][219] ([Intel XE#4328]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html
    - shard-bmg:          [SKIP][221] ([Intel XE#3012]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_plane@plane-position-covered@pipe-a-plane-4:
    - shard-lnl:          [DMESG-FAIL][223] ([Intel XE#324]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     [SKIP][225] ([Intel XE#1392]) -> [PASS][226]
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-dg2-set2:     [FAIL][227] ([Intel XE#1999]) -> [PASS][228] +2 other tests pass
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [SKIP][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254]) ([Intel XE#378]) -> ([PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-5/igt@xe_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@xe_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@xe_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-5/igt@xe_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@xe_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@xe_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@xe_module_load@load.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@xe_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_module_load@load.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-5/igt@xe_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@xe_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@xe_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@xe_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@xe_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@xe_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@xe_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@xe_module_load@load.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@xe_module_load@load.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@xe_module_load@load.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@xe_module_load@load.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@xe_module_load@load.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-4/igt@xe_module_load@load.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-8/igt@xe_module_load@load.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-2/igt@xe_module_load@load.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@xe_module_load@load.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@xe_module_load@load.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-1/igt@xe_module_load@load.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@xe_module_load@load.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-7/igt@xe_module_load@load.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@xe_module_load@load.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@xe_module_load@load.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-5/igt@xe_module_load@load.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@xe_module_load@load.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-6/igt@xe_module_load@load.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-lnl-3/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [SKIP][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305]) ([Intel XE#378]) -> ([PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_module_load@load.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_module_load@load.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@xe_module_load@load.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@xe_module_load@load.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@xe_module_load@load.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@xe_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@xe_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@xe_module_load@load.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@xe_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@xe_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@xe_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@xe_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@xe_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@xe_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-433/igt@xe_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@xe_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@xe_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@xe_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@xe_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@xe_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@xe_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-436/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-463/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_module_load@load.html

  * igt@xe_oa@buffer-size:
    - shard-bmg:          [FAIL][331] -> [PASS][332]
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_oa@buffer-size.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@xe_oa@buffer-size.html

  
#### Warnings ####

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][333] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][334] ([Intel XE#787]) +5 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][335] ([Intel XE#787]) -> [SKIP][336] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     [FAIL][337] ([Intel XE#1178]) -> [SKIP][338] ([Intel XE#455])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@kms_content_protection@atomic.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#455]) -> [FAIL][340] ([Intel XE#1188])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@uevent.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][341] ([Intel XE#2312]) -> [SKIP][342] ([Intel XE#2311]) +6 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     [SKIP][343] ([Intel XE#656]) -> [SKIP][344] ([Intel XE#651]) +5 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][345] ([Intel XE#2311]) -> [SKIP][346] ([Intel XE#2312]) +7 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#651]) -> [SKIP][348] ([Intel XE#656]) +7 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][349] ([Intel XE#2312]) -> [SKIP][350] ([Intel XE#4141]) +4 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][351] ([Intel XE#4141]) -> [SKIP][352] ([Intel XE#2312]) +6 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][353] ([Intel XE#2312]) -> [SKIP][354] ([Intel XE#2313]) +7 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#656]) -> [SKIP][356] ([Intel XE#653]) +6 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#653]) -> [SKIP][358] ([Intel XE#656]) +4 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][359] ([Intel XE#2313]) -> [SKIP][360] ([Intel XE#2312]) +10 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#362]) -> [FAIL][362] ([Intel XE#1729])
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][363] ([Intel XE#2426]) -> [SKIP][364] ([Intel XE#2509])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_pm@s4-basic-exec:
    - shard-bmg:          [ABORT][365] ([Intel XE#4054]) -> [ABORT][366] ([Intel XE#4268])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_pm@s4-basic-exec.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-8/igt@xe_pm@s4-basic-exec.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1909
  [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
  [Intel XE#4054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4054
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
  [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8270 -> IGTPW_12739
  * Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2791-fd356d116b876e8778d2a52820c832f95dcdd3d5

  IGTPW_12739: 12739
  IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544
  xe-2791-fd356d116b876e8778d2a52820c832f95dcdd3d5: fd356d116b876e8778d2a52820c832f95dcdd3d5

== Logs ==

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

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

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

* ✓ i915.CI.Full: success for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
                   ` (4 preceding siblings ...)
  2025-03-11 21:50 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-12  5:51 ` Patchwork
  2025-03-13 10:58 ` [PATCH i-g-t] " Kamil Konieczny
  2025-03-28 14:02 ` Kamil Konieczny
  7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-12  5:51 UTC (permalink / raw)
  To: Peter Senna Tschudin; +Cc: igt-dev

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

== Series Details ==

Series: runner/kmemleak: Remove unnecessary lseek() calls
URL   : https://patchwork.freedesktop.org/series/146105/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_16260_full -> IGTPW_12739_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/index.html

Participating hosts (11 -> 12)
------------------------------

  Additional (2): shard-snb-0 shard-dg2-set2 
  Missing    (1): pig-kbl-iris 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@load:
    - shard-snb:          ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) -> ([SKIP][26], [SKIP][27], [SKIP][28], [SKIP][29], [SKIP][30], [SKIP][31], [SKIP][32], [SKIP][33], [SKIP][34], [SKIP][35], [SKIP][36], [SKIP][37], [SKIP][38], [SKIP][39], [SKIP][40], [SKIP][41], [SKIP][42], [SKIP][43], [SKIP][44], [SKIP][45], [SKIP][46], [SKIP][47])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb2/igt@i915_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb7/igt@i915_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb4/igt@i915_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb6/igt@i915_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-snb5/igt@i915_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb6/igt@i915_module_load@load.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-snb2/igt@i915_module_load@load.html
    - shard-tglu-1:       ([PASS][48], [PASS][49], [PASS][50]) -> [SKIP][51] ([i915#13896])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-1/igt@i915_module_load@load.html
    - shard-dg1:          ([PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76]) -> ([SKIP][77], [SKIP][78], [SKIP][79], [SKIP][80], [SKIP][81], [SKIP][82], [SKIP][83], [SKIP][84], [SKIP][85], [SKIP][86], [SKIP][87], [SKIP][88], [SKIP][89], [SKIP][90], [SKIP][91], [SKIP][92], [SKIP][93], [SKIP][94], [SKIP][95], [SKIP][96], [SKIP][97], [SKIP][98], [SKIP][99], [SKIP][100]) ([i915#13896])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-16/igt@i915_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
    - shard-tglu:         ([PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122]) -> ([SKIP][123], [SKIP][124], [SKIP][125], [SKIP][126], [SKIP][127], [SKIP][128], [SKIP][129], [SKIP][130], [SKIP][131], [SKIP][132], [SKIP][133], [SKIP][134], [SKIP][135], [SKIP][136], [SKIP][137], [SKIP][138], [SKIP][139], [SKIP][140], [SKIP][141], [SKIP][142], [SKIP][143], [SKIP][144], [SKIP][145], [SKIP][146]) ([i915#13896])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-10/igt@i915_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-9/igt@i915_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
    - shard-glk:          ([PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168]) -> ([SKIP][169], [SKIP][170], [SKIP][171], [SKIP][172], [SKIP][173], [SKIP][174], [SKIP][175], [SKIP][176], [SKIP][177], [SKIP][178], [SKIP][179], [SKIP][180], [SKIP][181], [SKIP][182], [SKIP][183], [SKIP][184], [SKIP][185], [SKIP][186], [SKIP][187], [SKIP][188], [SKIP][189], [SKIP][190], [SKIP][191])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk3/igt@i915_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk3/igt@i915_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk7/igt@i915_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk2/igt@i915_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk9/igt@i915_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk2/igt@i915_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk7/igt@i915_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk2/igt@i915_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk7/igt@i915_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk1/igt@i915_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk8/igt@i915_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk9/igt@i915_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk1/igt@i915_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk1/igt@i915_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk5/igt@i915_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk6/igt@i915_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk9/igt@i915_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk8/igt@i915_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-glk6/igt@i915_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk9/igt@i915_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk8/igt@i915_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk6/igt@i915_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk5/igt@i915_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk4/igt@i915_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk3/igt@i915_module_load@load.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-glk1/igt@i915_module_load@load.html
    - shard-mtlp:         ([PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216]) -> ([SKIP][217], [SKIP][218], [SKIP][219], [SKIP][220], [SKIP][221], [SKIP][222], [SKIP][223], [SKIP][224], [SKIP][225], [SKIP][226], [SKIP][227], [SKIP][228], [SKIP][229], [SKIP][230], [SKIP][231], [SKIP][232], [SKIP][233], [SKIP][234], [SKIP][235], [SKIP][236], [SKIP][237], [SKIP][238], [SKIP][239], [SKIP][240], [SKIP][241]) ([i915#13896])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-8/igt@i915_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-7/igt@i915_module_load@load.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-4/igt@i915_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
    - shard-dg2-9:        ([PASS][242], [PASS][243]) -> ([SKIP][244], [SKIP][245], [SKIP][246]) ([i915#13896])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
    - shard-dg2:          ([PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269]) -> ([SKIP][270], [SKIP][271], [SKIP][272], [SKIP][273], [SKIP][274], [SKIP][275], [SKIP][276], [SKIP][277], [SKIP][278], [SKIP][279], [SKIP][280], [SKIP][281], [SKIP][282], [SKIP][283], [SKIP][284], [SKIP][285], [SKIP][286], [SKIP][287], [SKIP][288], [SKIP][289], [SKIP][290], [SKIP][291]) ([i915#13896])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-8/igt@i915_module_load@load.html
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-2/igt@i915_module_load@load.html
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-1/igt@i915_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-11/igt@i915_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
    - shard-rkl:          ([PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313]) -> ([SKIP][314], [SKIP][315], [SKIP][316], [SKIP][317], [SKIP][318], [SKIP][319], [SKIP][320], [SKIP][321], [SKIP][322], [SKIP][323], [SKIP][324], [SKIP][325], [SKIP][326], [SKIP][327], [SKIP][328], [SKIP][329], [SKIP][330], [SKIP][331], [SKIP][332], [SKIP][333], [SKIP][334], [SKIP][335], [SKIP][336]) ([i915#13896])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html

  
  [i915#13896]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13896


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8270 -> IGTPW_12739
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_16260: 9afa34d65af6f42d982c4c154121b4762e70a70a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12739: 12739
  IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* RE: ✗ i915.CI.Full: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-11 15:21   ` Peter Senna Tschudin
@ 2025-03-12  5:54     ` Ravali, JupallyX
  0 siblings, 0 replies; 14+ messages in thread
From: Ravali, JupallyX @ 2025-03-12  5:54 UTC (permalink / raw)
  To: i915-ci-infra@lists.freedesktop.org,
	igt-dev@lists.freedesktop.org

Hi,

https://patchwork.freedesktop.org/series/146105/ - Re-reported.
i915.CI.FULL - Re-reported.

Thanks,
Ravali.

-----Original Message-----
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Peter Senna Tschudin
Sent: 11 March 2025 20:52
To: igt-dev@lists.freedesktop.org; I915-ci-infra@lists.freedesktop.org
Subject: Re: ✗ i915.CI.Full: failure for runner/kmemleak: Remove unnecessary lseek() calls

Dear I915,

On 11.03.2025 14:45, Patchwork wrote:
> == Series Details ==
> 
> Series: runner/kmemleak: Remove unnecessary lseek() calls
> URL   : https://patchwork.freedesktop.org/series/146105/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_16260_full -> IGTPW_12739_full 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12739_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12739_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.
> 
>   External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/index.html
> 
> Participating hosts (11 -> 12)
> ------------------------------
> 
>   Additional (2): shard-snb-0 shard-dg2-set2 
>   Missing    (1): pig-kbl-iris 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12739_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_module_load@load:
>     - shard-tglu-1:       ([PASS][1], [PASS][2], [PASS][3]) -> [SKIP][4]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-1/igt@i915_module_load@load.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-1/igt@i915_module_load@load.html
>     - shard-dg1:          ([PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29]) -> ([SKIP][30], [SKIP][31], [SKIP][32], [SKIP][33], [SKIP][34], [SKIP][35], [SKIP][36], [SKIP][37], [SKIP][38], [SKIP][39], [SKIP][40], [SKIP][41], [SKIP][42], [SKIP][43], [SKIP][44], [SKIP][45], [SKIP][46], [SKIP][47], [SKIP][48], [SKIP][49], [SKIP][50], [SKIP][51], [SKIP][52], [SKIP][53])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-12/igt@i915_module_load@load.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-16/igt@i915_module_load@load.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-13/igt@i915_module_load@load.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-19/igt@i915_module_load@load.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-15/igt@i915_module_load@load.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-17/igt@i915_module_load@load.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-14/igt@i915_module_load@load.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg1-18/igt@i915_module_load@load.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-19/igt@i915_module_load@load.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-18/igt@i915_module_load@load.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-17/igt@i915_module_load@load.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-16/igt@i915_module_load@load.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-15/igt@i915_module_load@load.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-13/igt@i915_module_load@load.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg1-12/igt@i915_module_load@load.html
>     - shard-tglu:         ([PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75]) -> ([SKIP][76], [SKIP][77], [SKIP][78], [SKIP][79], [SKIP][80], [SKIP][81], [SKIP][82], [SKIP][83], [SKIP][84], [SKIP][85], [SKIP][86], [SKIP][87], [SKIP][88], [SKIP][89], [SKIP][90], [SKIP][91], [SKIP][92], [SKIP][93], [SKIP][94], [SKIP][95], [SKIP][96], [SKIP][97], [SKIP][98], [SKIP][99])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-10/igt@i915_module_load@load.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-5/igt@i915_module_load@load.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-6/igt@i915_module_load@load.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-9/igt@i915_module_load@load.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-2/igt@i915_module_load@load.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-4/igt@i915_module_load@load.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-8/igt@i915_module_load@load.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-7/igt@i915_module_load@load.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-tglu-3/igt@i915_module_load@load.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-7/igt@i915_module_load@load.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-6/igt@i915_module_load@load.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-5/igt@i915_module_load@load.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-4/igt@i915_module_load@load.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-3/igt@i915_module_load@load.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-2/igt@i915_module_load@load.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-10/igt@i915_module_load@load.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-9/igt@i915_module_load@load.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-tglu-8/igt@i915_module_load@load.html
>     - shard-mtlp:         ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124]) -> ([SKIP][125], [SKIP][126], [SKIP][127], [SKIP][128], [SKIP][129], [SKIP][130], [SKIP][131], [SKIP][132], [SKIP][133], [SKIP][134], [SKIP][135], [SKIP][136], [SKIP][137], [SKIP][138], [SKIP][139], [SKIP][140], [SKIP][141], [SKIP][142], [SKIP][143], [SKIP][144], [SKIP][145], [SKIP][146], [SKIP][147], [SKIP][148], [SKIP][149])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-8/igt@i915_module_load@load.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-6/igt@i915_module_load@load.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-4/igt@i915_module_load@load.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-1/igt@i915_module_load@load.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-3/igt@i915_module_load@load.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-2/igt@i915_module_load@load.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-5/igt@i915_module_load@load.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-mtlp-7/igt@i915_module_load@load.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-8/igt@i915_module_load@load.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-7/igt@i915_module_load@load.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-6/igt@i915_module_load@load.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-5/igt@i915_module_load@load.html
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-4/igt@i915_module_load@load.html
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-3/igt@i915_module_load@load.html
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-mtlp-1/igt@i915_module_load@load.html
>     - shard-dg2-9:        ([PASS][150], [PASS][151]) -> ([SKIP][152], [SKIP][153], [SKIP][154])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-9/igt@i915_module_load@load.html
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-9/igt@i915_module_load@load.html
>     - shard-dg2:          ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) -> ([SKIP][178], [SKIP][179], [SKIP][180], [SKIP][181], [SKIP][182], [SKIP][183], [SKIP][184], [SKIP][185], [SKIP][186], [SKIP][187], [SKIP][188], [SKIP][189], [SKIP][190], [SKIP][191], [SKIP][192], [SKIP][193], [SKIP][194], [SKIP][195], [SKIP][196], [SKIP][197], [SKIP][198], [SKIP][199])
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-11/igt@i915_module_load@load.html
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-7/igt@i915_module_load@load.html
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-10/igt@i915_module_load@load.html
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-1/igt@i915_module_load@load.html
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-6/igt@i915_module_load@load.html
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-8/igt@i915_module_load@load.html
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-2/igt@i915_module_load@load.html
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-5/igt@i915_module_load@load.html
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-3/igt@i915_module_load@load.html
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-dg2-4/igt@i915_module_load@load.html
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-8/igt@i915_module_load@load.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-7/igt@i915_module_load@load.html
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-6/igt@i915_module_load@load.html
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-5/igt@i915_module_load@load.html
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-4/igt@i915_module_load@load.html
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-3/igt@i915_module_load@load.html
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-2/igt@i915_module_load@load.html
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-1/igt@i915_module_load@load.html
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-11/igt@i915_module_load@load.html
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-dg2-10/igt@i915_module_load@load.html
>     - shard-rkl:          ([PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221]) -> ([SKIP][222], [SKIP][223], [SKIP][224], [SKIP][225], [SKIP][226], [SKIP][227], [SKIP][228], [SKIP][229], [SKIP][230], [SKIP][231], [SKIP][232], [SKIP][233], [SKIP][234], [SKIP][235], [SKIP][236], [SKIP][237], [SKIP][238], [SKIP][239], [SKIP][240], [SKIP][241], [SKIP][242], [SKIP][243], [SKIP][244])
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-5/igt@i915_module_load@load.html
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-6/igt@i915_module_load@load.html
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-3/igt@i915_module_load@load.html
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-7/igt@i915_module_load@load.html
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-4/igt@i915_module_load@load.html
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-1/igt@i915_module_load@load.html
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16260/shard-rkl-8/igt@i915_module_load@load.html
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-1/igt@i915_module_load@load.html
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-3/igt@i915_module_load@load.html
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-5/igt@i915_module_load@load.html
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-6/igt@i915_module_load@load.html
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-7/igt@i915_module_load@load.html
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
>    [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i915_module_load@load.html
>    [244]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12739/shard-rkl-8/igt@i
> 915_module_load@load.html
> 
These are unrelated to my change. Please fix and re-run.

Thank you,

Peter

[...]

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

* Re: ✗ Xe.CI.Full: failure for runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-11 21:50 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-12 10:18   ` Peter Senna Tschudin
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-03-12 10:18 UTC (permalink / raw)
  To: igt-dev, I915-ci-infra

Dear I915,

On 11.03.2025 22:50, Patchwork wrote:
> == Series Details ==
> 
> Series: runner/kmemleak: Remove unnecessary lseek() calls
> URL   : https://patchwork.freedesktop.org/series/146105/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from XEIGT_8270_full -> XEIGTPW_12739_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with XEIGTPW_12739_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in XEIGTPW_12739_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_12739_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
>     - shard-bmg:          [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
>    [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
>     - shard-dg2-set2:     [PASS][3] -> [ABORT][4]
>    [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
>    [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12739/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html

These are unrelated to my change.

Thank you,

Peter

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

* Re: [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
                   ` (5 preceding siblings ...)
  2025-03-12  5:51 ` ✓ i915.CI.Full: success " Patchwork
@ 2025-03-13 10:58 ` Kamil Konieczny
  2025-03-28 14:02 ` Kamil Konieczny
  7 siblings, 0 replies; 14+ messages in thread
From: Kamil Konieczny @ 2025-03-13 10:58 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: igt-dev, vitaly.prosyak, christian.koenig, alexander.deucher,
	jesse.zhang, harry.wentland, zbigniew.kempczynski, ryszard.knop,
	lucas.demarchi, katarzyna.piecielska

Hi Peter,
On 2025-03-10 at 21:02:20 +0100, Peter Senna Tschudin wrote:
> Earlier versions of the code performed multiple read operations on the
> kmemleak file without closing and reopening the file descriptor. To
> handle this, lseek() was used to reset the read position.
> 
> However, the current implementation no longer requires these lseek()
> calls, as the redundant read operations have been removed. This commit
> eliminates the leftover lseek() calls that are now unnecessary.
> 
> Cc: vitaly.prosyak@amd.com
> Cc: christian.koenig@amd.com
> Cc: alexander.deucher@amd.com
> Cc: jesse.zhang@amd.com
> Cc: harry.wentland@amd.com
> Cc: zbigniew.kempczynski@intel.com
> Cc: kamil.konieczny@linux.intel.com
> Cc: ryszard.knop@intel.com
> Cc: lucas.demarchi@intel.com
> Cc: katarzyna.piecielska@intel.com
> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>

Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

> ---
>  runner/kmemleak.c | 9 ---------
>  1 file changed, 9 deletions(-)
> 
> diff --git a/runner/kmemleak.c b/runner/kmemleak.c
> index e1bfb65ba..e52bc12d5 100644
> --- a/runner/kmemleak.c
> +++ b/runner/kmemleak.c
> @@ -116,9 +116,6 @@ static bool runner_kmemleak_found_leaks(void)
>  
>  	rlen = read(fd, buf, 1);
>  
> -	if (rlen == 1)
> -		lseek(fd, 0, SEEK_SET);
> -
>  	close(fd);
>  
>  	return rlen == 1;
> @@ -169,12 +166,6 @@ static bool runner_kmemleak_append_to(const char *last_test, int resdirfd,
>  	if (kmemleakfd < 0)
>  		return false;
>  
> -	/* Seek back to first byte */
> -	if (lseek(kmemleakfd, 0, SEEK_SET) == (off_t)-1) {
> -		close(kmemleakfd);
> -		return false;
> -	}
> -
>  	/* Open text file to append */
>  	resfilefd = openat(resdirfd, KMEMLEAK_RESFILENAME,
>  			   O_RDWR | O_CREAT | O_APPEND, 0666);
> -- 
> 2.34.1
> 

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

* Re: [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls
  2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
                   ` (6 preceding siblings ...)
  2025-03-13 10:58 ` [PATCH i-g-t] " Kamil Konieczny
@ 2025-03-28 14:02 ` Kamil Konieczny
  7 siblings, 0 replies; 14+ messages in thread
From: Kamil Konieczny @ 2025-03-28 14:02 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: igt-dev, vitaly.prosyak, christian.koenig, alexander.deucher,
	jesse.zhang, harry.wentland, zbigniew.kempczynski, ryszard.knop,
	lucas.demarchi, katarzyna.piecielska

Hi Peter,
On 2025-03-10 at 21:02:20 +0100, Peter Senna Tschudin wrote:
> Earlier versions of the code performed multiple read operations on the
> kmemleak file without closing and reopening the file descriptor. To
> handle this, lseek() was used to reset the read position.
> 
> However, the current implementation no longer requires these lseek()
> calls, as the redundant read operations have been removed. This commit
> eliminates the leftover lseek() calls that are now unnecessary.
> 
> Cc: vitaly.prosyak@amd.com
> Cc: christian.koenig@amd.com
> Cc: alexander.deucher@amd.com
> Cc: jesse.zhang@amd.com
> Cc: harry.wentland@amd.com
> Cc: zbigniew.kempczynski@intel.com
> Cc: kamil.konieczny@linux.intel.com
> Cc: ryszard.knop@intel.com
> Cc: lucas.demarchi@intel.com
> Cc: katarzyna.piecielska@intel.com
> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>

Thank you, applied.

Regards,
Kamil

> ---
>  runner/kmemleak.c | 9 ---------
>  1 file changed, 9 deletions(-)
> 
> diff --git a/runner/kmemleak.c b/runner/kmemleak.c
> index e1bfb65ba..e52bc12d5 100644
> --- a/runner/kmemleak.c
> +++ b/runner/kmemleak.c
> @@ -116,9 +116,6 @@ static bool runner_kmemleak_found_leaks(void)
>  
>  	rlen = read(fd, buf, 1);
>  
> -	if (rlen == 1)
> -		lseek(fd, 0, SEEK_SET);
> -
>  	close(fd);
>  
>  	return rlen == 1;
> @@ -169,12 +166,6 @@ static bool runner_kmemleak_append_to(const char *last_test, int resdirfd,
>  	if (kmemleakfd < 0)
>  		return false;
>  
> -	/* Seek back to first byte */
> -	if (lseek(kmemleakfd, 0, SEEK_SET) == (off_t)-1) {
> -		close(kmemleakfd);
> -		return false;
> -	}
> -
>  	/* Open text file to append */
>  	resfilefd = openat(resdirfd, KMEMLEAK_RESFILENAME,
>  			   O_RDWR | O_CREAT | O_APPEND, 0666);
> -- 
> 2.34.1
> 

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

end of thread, other threads:[~2025-03-28 14:02 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-10 20:02 [PATCH i-g-t] runner/kmemleak: Remove unnecessary lseek() calls Peter Senna Tschudin
2025-03-11  1:38 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-03-11  1:47 ` ✗ i915.CI.BAT: failure " Patchwork
2025-03-11  7:10   ` Peter Senna Tschudin
2025-03-11  9:51     ` Ravali, JupallyX
2025-03-11  9:50 ` ✓ i915.CI.BAT: success " Patchwork
2025-03-11 13:45 ` ✗ i915.CI.Full: failure " Patchwork
2025-03-11 15:21   ` Peter Senna Tschudin
2025-03-12  5:54     ` Ravali, JupallyX
2025-03-11 21:50 ` ✗ Xe.CI.Full: " Patchwork
2025-03-12 10:18   ` Peter Senna Tschudin
2025-03-12  5:51 ` ✓ i915.CI.Full: success " Patchwork
2025-03-13 10:58 ` [PATCH i-g-t] " Kamil Konieczny
2025-03-28 14:02 ` Kamil Konieczny

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