intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
@ 2023-12-06  6:47 Chaitanya Kumar Borah
  2023-12-06  7:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Chaitanya Kumar Borah @ 2023-12-06  6:47 UTC (permalink / raw)
  To: intel-gfx

From: Johannes Berg <johannes.berg@intel.com>

This reverts commit f4acfcd4deb1 ("debugfs: annotate debugfs handlers
vs. removal with lockdep"), it appears to have false positives and
really shouldn't have been in the -rc series with the fixes anyway.

Link:https://patchwork.kernel.org/project/linux-fsdevel/patch/20231202114936.fd55431ab160.I911aa53abeeca138126f690d383a89b13eb05667@changeid/
Reference: https://gitlab.freedesktop.org/drm/intel/-/issues/9802
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/debugfs/file.c     | 10 ----------
 fs/debugfs/inode.c    |  7 -------
 fs/debugfs/internal.h |  6 ------
 3 files changed, 23 deletions(-)

diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index a5ade8c16375..5063434be0fc 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -108,12 +108,6 @@ int debugfs_file_get(struct dentry *dentry)
 			kfree(fsd);
 			fsd = READ_ONCE(dentry->d_fsdata);
 		}
-#ifdef CONFIG_LOCKDEP
-		fsd->lock_name = kasprintf(GFP_KERNEL, "debugfs:%pd", dentry);
-		lockdep_register_key(&fsd->key);
-		lockdep_init_map(&fsd->lockdep_map, fsd->lock_name ?: "debugfs",
-				 &fsd->key, 0);
-#endif
 		INIT_LIST_HEAD(&fsd->cancellations);
 		mutex_init(&fsd->cancellations_mtx);
 	}
@@ -132,8 +126,6 @@ int debugfs_file_get(struct dentry *dentry)
 	if (!refcount_inc_not_zero(&fsd->active_users))
 		return -EIO;
 
-	lock_map_acquire_read(&fsd->lockdep_map);
-
 	return 0;
 }
 EXPORT_SYMBOL_GPL(debugfs_file_get);
@@ -151,8 +143,6 @@ void debugfs_file_put(struct dentry *dentry)
 {
 	struct debugfs_fsdata *fsd = READ_ONCE(dentry->d_fsdata);
 
-	lock_map_release(&fsd->lockdep_map);
-
 	if (refcount_dec_and_test(&fsd->active_users))
 		complete(&fsd->active_users_drained);
 }
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index e4e7fe1bd9fb..034a617cb1a5 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -243,10 +243,6 @@ static void debugfs_release_dentry(struct dentry *dentry)
 
 	/* check it wasn't a dir (no fsdata) or automount (no real_fops) */
 	if (fsd && fsd->real_fops) {
-#ifdef CONFIG_LOCKDEP
-		lockdep_unregister_key(&fsd->key);
-		kfree(fsd->lock_name);
-#endif
 		WARN_ON(!list_empty(&fsd->cancellations));
 		mutex_destroy(&fsd->cancellations_mtx);
 	}
@@ -755,9 +751,6 @@ static void __debugfs_file_removed(struct dentry *dentry)
 	if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)
 		return;
 
-	lock_map_acquire(&fsd->lockdep_map);
-	lock_map_release(&fsd->lockdep_map);
-
 	/* if we hit zero, just wait for all to finish */
 	if (!refcount_dec_and_test(&fsd->active_users)) {
 		wait_for_completion(&fsd->active_users_drained);
diff --git a/fs/debugfs/internal.h b/fs/debugfs/internal.h
index 0c4c68cf161f..dae80c2a469e 100644
--- a/fs/debugfs/internal.h
+++ b/fs/debugfs/internal.h
@@ -7,7 +7,6 @@
 
 #ifndef _DEBUGFS_INTERNAL_H_
 #define _DEBUGFS_INTERNAL_H_
-#include <linux/lockdep.h>
 #include <linux/list.h>
 
 struct file_operations;
@@ -25,11 +24,6 @@ struct debugfs_fsdata {
 		struct {
 			refcount_t active_users;
 			struct completion active_users_drained;
-#ifdef CONFIG_LOCKDEP
-			struct lockdep_map lockdep_map;
-			struct lock_class_key key;
-			char *lock_name;
-#endif
 
 			/* protect cancellations */
 			struct mutex cancellations_mtx;
-- 
2.25.1


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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
  2023-12-06  6:47 [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Chaitanya Kumar Borah
@ 2023-12-06  7:39 ` Patchwork
  2023-12-06  7:58 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-06  7:39 UTC (permalink / raw)
  To: Chaitanya Kumar Borah; +Cc: intel-gfx

== Series Details ==

Series: Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
URL   : https://patchwork.freedesktop.org/series/127359/
State : warning

== Summary ==

Error: dim checkpatch failed
75765522921d Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
-:12: WARNING:COMMIT_LOG_USE_LINK: Unknown link reference 'Reference:', use 'Link:' or 'Closes:' instead
#12: 
Reference: https://gitlab.freedesktop.org/drm/intel/-/issues/9802

total: 0 errors, 1 warnings, 0 checks, 65 lines checked



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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
  2023-12-06  6:47 [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Chaitanya Kumar Borah
  2023-12-06  7:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
@ 2023-12-06  7:58 ` Patchwork
  2023-12-06 19:34   ` Saarinen, Jani
  2023-12-06 11:04 ` [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Shankar, Uma
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2023-12-06  7:58 UTC (permalink / raw)
  To: Chaitanya Kumar Borah; +Cc: intel-gfx

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

== Series Details ==

Series: Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
URL   : https://patchwork.freedesktop.org/series/127359/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13983 -> Patchwork_127359v2
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (35 -> 36)
------------------------------

  Additional (2): bat-dg2-8 bat-mtlp-8 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - bat-mtlp-6:         NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_psr@psr_cursor_plane_move:
    - bat-mtlp-8:         NOTRUN -> [SKIP][2] +3 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_psr@psr_cursor_plane_move.html

  
New tests
---------

  New tests have been introduced between CI_DRM_13983 and Patchwork_127359v2:

### New IGT tests (12) ###

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7:
    - Statuses : 1 abort(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@basic-hwmon:
    - bat-mtlp-8:         NOTRUN -> [SKIP][3] ([i915#9318])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html

  * igt@gem_lmem_swapping@basic:
    - fi-apl-guc:         NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-guc/igt@gem_lmem_swapping@basic.html
    - bat-jsl-3:          NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-3/igt@gem_lmem_swapping@basic.html
    - fi-glk-j4005:       NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-j4005/igt@gem_lmem_swapping@basic.html
    - bat-adlp-9:         NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-9/igt@gem_lmem_swapping@basic.html
    - fi-skl-guc:         NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-guc/igt@gem_lmem_swapping@basic.html
    - fi-kbl-7567u:       NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-7567u/igt@gem_lmem_swapping@basic.html
    - fi-cfl-8700k:       NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html
    - fi-elk-e7500:       NOTRUN -> [SKIP][11] ([fdo#109271]) +4 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-e7500/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-bsw-nick:        NOTRUN -> [SKIP][12] ([fdo#109271]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html
    - bat-kbl-2:          NOTRUN -> [SKIP][13] ([fdo#109271]) +4 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
    - fi-rkl-11600:       NOTRUN -> [SKIP][14] ([i915#4613]) +3 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][15] ([i915#4613]) +3 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_lmem_swapping@random-engines:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][16] ([fdo#109271]) +3 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
    - fi-skl-6600u:       NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html
    - bat-adls-5:         NOTRUN -> [SKIP][18] ([i915#4613]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-5/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random:
    - fi-cfl-guc:         NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-guc/igt@gem_lmem_swapping@verify-random.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][20] ([i915#4613]) +3 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-x1275/igt@gem_lmem_swapping@verify-random.html
    - fi-cfl-8109u:       NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
    - fi-ivb-3770:        NOTRUN -> [SKIP][23] ([fdo#109271]) +4 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-3770/igt@gem_lmem_swapping@verify-random.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][24] ([i915#4613]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
    - fi-kbl-guc:         NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-guc/igt@gem_lmem_swapping@verify-random.html
    - fi-ilk-650:         NOTRUN -> [SKIP][26] ([fdo#109271]) +4 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ilk-650/igt@gem_lmem_swapping@verify-random.html
    - bat-jsl-1:          NOTRUN -> [SKIP][27] ([i915#4613]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_mmap@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][28] ([i915#4083])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_mmap@basic.html
    - bat-dg2-8:          NOTRUN -> [SKIP][29] ([i915#4083])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@gem_mmap@basic.html

  * igt@gem_mmap_gtt@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][30] ([i915#4077]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
    - bat-dg2-8:          NOTRUN -> [SKIP][31] ([i915#4077]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@gem_mmap_gtt@basic.html

  * igt@gem_render_tiled_blits@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][32] ([i915#4079]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-dg2-8:          NOTRUN -> [SKIP][33] ([i915#4079]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_rpm@module-reload:
    - fi-blb-e6850:       NOTRUN -> [SKIP][34] ([fdo#109271]) +4 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html

  * igt@i915_pm_rps@basic-api:
    - bat-mtlp-8:         NOTRUN -> [SKIP][35] ([i915#6621])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
    - bat-dg2-8:          NOTRUN -> [SKIP][36] ([i915#6621])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         NOTRUN -> [DMESG-FAIL][37] ([i915#5334])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@hangcheck:
    - bat-adls-5:         NOTRUN -> [DMESG-WARN][38] ([i915#5591])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-5/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-tgl-1115g4:      NOTRUN -> [INCOMPLETE][39] ([i915#7443])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
    - bat-atsm-1:         NOTRUN -> [SKIP][40] ([i915#6645])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][41] ([i915#6645])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][42] ([fdo#109271]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][43] ([i915#6645])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
    - bat-dg2-8:          NOTRUN -> [SKIP][44] ([i915#6645])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][45] ([i915#5190])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-8:          NOTRUN -> [SKIP][46] ([i915#5190])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][47] ([i915#4212]) +8 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-8:          NOTRUN -> [SKIP][48] ([i915#4215] / [i915#5190])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - bat-dg2-8:          NOTRUN -> [SKIP][49] ([i915#4212]) +6 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - bat-dg2-8:          NOTRUN -> [SKIP][50] ([i915#4212] / [i915#5608])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][51] ([i915#4213]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - bat-dg2-8:          NOTRUN -> [SKIP][52] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][53] ([i915#3555] / [i915#3840] / [i915#9159])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6:
    - bat-adlp-11:        [PASS][54] -> [DMESG-WARN][55] ([i915#6868])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6:
    - bat-adlp-11:        [PASS][56] -> [FAIL][57] ([i915#6121]) +2 other tests fail
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-mtlp-8:         NOTRUN -> [SKIP][58] ([fdo#109285])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
    - bat-dg2-8:          NOTRUN -> [SKIP][59] ([fdo#109285])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-mtlp-8:         NOTRUN -> [SKIP][60] ([i915#5274])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
    - bat-dg2-8:          NOTRUN -> [SKIP][61] ([i915#5274])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7 (NEW):
    - bat-adlp-11:        NOTRUN -> [ABORT][62] ([i915#8668])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - fi-kbl-guc:         NOTRUN -> [SKIP][63] ([fdo#109271])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-guc/igt@kms_pipe_crc_basic@suspend-read-crc.html
    - bat-atsm-1:         NOTRUN -> [SKIP][64] ([i915#1836])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
    - bat-dg2-8:          NOTRUN -> [INCOMPLETE][65] ([i915#1982] / [i915#9280])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-dg2-8:          NOTRUN -> [SKIP][66] ([i915#5354])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr_cursor_plane_move:
    - bat-dg2-8:          NOTRUN -> [SKIP][67] ([i915#9673] / [i915#9736]) +3 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_psr@psr_cursor_plane_move.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-mtlp-8:         NOTRUN -> [SKIP][68] ([i915#3555] / [i915#8809])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
    - bat-dg2-8:          NOTRUN -> [SKIP][69] ([i915#3555])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-dg2-8:          NOTRUN -> [SKIP][70] ([i915#3708])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-dg2-8:          NOTRUN -> [SKIP][71] ([i915#3708] / [i915#4077]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][72] ([i915#3708] / [i915#4077]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-fence-read:
    - bat-mtlp-8:         NOTRUN -> [SKIP][73] ([i915#3708]) +2 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-write:
    - bat-dg2-8:          NOTRUN -> [SKIP][74] ([i915#3291] / [i915#3708]) +2 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-bsw-n3050:       [ABORT][75] ([i915#9793]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html
    - fi-cfl-guc:         [ABORT][77] ([i915#8213] / [i915#8668]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
    - bat-mtlp-6:         [ABORT][79] ([i915#8213] / [i915#8668]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html
    - bat-dg2-9:          [ABORT][81] ([i915#8213]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-x1275:       [ABORT][83] ([i915#8213] / [i915#8668] / [i915#9793]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html
    - bat-jsl-1:          [ABORT][85] ([i915#9793]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-jsl-1/igt@core_hotunplug@unbind-rebind.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-1/igt@core_hotunplug@unbind-rebind.html
    - fi-cfl-8700k:       [ABORT][87] ([i915#8213] / [i915#8668]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html
    - fi-blb-e6850:       [ABORT][89] ([i915#9793]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
    - bat-kbl-2:          [ABORT][91] ([i915#9793]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html
    - fi-rkl-11600:       [ABORT][93] ([i915#8213]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
    - fi-skl-6600u:       [ABORT][95] ([i915#8668]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-skl-6600u/igt@core_hotunplug@unbind-rebind.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-6600u/igt@core_hotunplug@unbind-rebind.html
    - bat-adls-5:         [ABORT][97] ([i915#9793]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adls-5/igt@core_hotunplug@unbind-rebind.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-5/igt@core_hotunplug@unbind-rebind.html
    - fi-apl-guc:         [ABORT][99] ([i915#8213] / [i915#8668]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html
    - bat-atsm-1:         [ABORT][101] ([i915#8213]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html
    - bat-dg1-7:          [ABORT][103] ([i915#8213]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
    - bat-jsl-3:          [ABORT][105] ([i915#9793]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-jsl-3/igt@core_hotunplug@unbind-rebind.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-3/igt@core_hotunplug@unbind-rebind.html
    - fi-glk-j4005:       [ABORT][107] ([i915#8213] / [i915#8668]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html
    - bat-adlp-9:         [ABORT][109] ([i915#8213] / [i915#8668]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adlp-9/igt@core_hotunplug@unbind-rebind.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-9/igt@core_hotunplug@unbind-rebind.html
    - fi-skl-guc:         [ABORT][111] ([i915#8668]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-skl-guc/igt@core_hotunplug@unbind-rebind.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-guc/igt@core_hotunplug@unbind-rebind.html
    - bat-dg2-11:         [ABORT][113] ([i915#8213]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
    - fi-cfl-8109u:       [ABORT][115] ([i915#8213] / [i915#8668]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-7567u:       [ABORT][117] ([i915#8668] / [i915#9793]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
    - fi-ivb-3770:        [ABORT][119] ([i915#9793]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-ivb-3770/igt@core_hotunplug@unbind-rebind.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-3770/igt@core_hotunplug@unbind-rebind.html
    - fi-elk-e7500:       [ABORT][121] ([i915#9793]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html
    - fi-bsw-nick:        [ABORT][123] ([i915#9793]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-guc:         [ABORT][125] ([i915#8668] / [i915#9793]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-kbl-guc/igt@core_hotunplug@unbind-rebind.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-guc/igt@core_hotunplug@unbind-rebind.html
    - fi-ilk-650:         [ABORT][127] ([i915#9793]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-ilk-650/igt@core_hotunplug@unbind-rebind.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ilk-650/igt@core_hotunplug@unbind-rebind.html
    - fi-tgl-1115g4:      [ABORT][129] ([i915#8213]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
  [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
  [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
  [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
  [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
  [i915#9280]: https://gitlab.freedesktop.org/drm/intel/issues/9280
  [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
  [i915#9793]: https://gitlab.freedesktop.org/drm/intel/issues/9793


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

  * Linux: CI_DRM_13983 -> Patchwork_127359v2

  CI-20190529: 20190529
  CI_DRM_13983: a9d99261a978835b02e248fe18af3026416af3e8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_7622: 48a47d91b7727215b965690c69d84159c8fb1aa2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_127359v2: a9d99261a978835b02e248fe18af3026416af3e8 @ git://anongit.freedesktop.org/gfx-ci/linux


### Linux commits

958303ae297c Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"

== Logs ==

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

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

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

* Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
  2023-12-06  6:47 [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Chaitanya Kumar Borah
  2023-12-06  7:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
  2023-12-06  7:58 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-12-06 11:04 ` Shankar, Uma
  2023-12-06 19:41   ` Saarinen, Jani
  2023-12-07  9:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
  2023-12-07 11:10 ` ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 1 reply; 11+ messages in thread
From: Shankar, Uma @ 2023-12-06 11:04 UTC (permalink / raw)
  To: Borah, Chaitanya Kumar, intel-gfx



> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of
> Chaitanya Kumar Borah
> Sent: Wednesday, December 6, 2023 12:17 PM
> To: intel-gfx@lists.freedesktop.org
> Subject: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs
> handlers vs. removal with lockdep"
> 
> From: Johannes Berg <johannes.berg@intel.com>
> 
> This reverts commit f4acfcd4deb1 ("debugfs: annotate debugfs handlers vs.
> removal with lockdep"), it appears to have false positives and really shouldn't
> have been in the -rc series with the fixes anyway.

Acked-by: Uma Shankar <uma.shankar@intel.com>

Hi Chaitanya,
Please get the full CI run executed with this change, once its green we can
plan merge.

Regards,
Uma Shankar

> Link:https://patchwork.kernel.org/project/linux-
> fsdevel/patch/20231202114936.fd55431ab160.I911aa53abeeca138126f69
> 0d383a89b13eb05667@changeid/
> Reference: https://gitlab.freedesktop.org/drm/intel/-/issues/9802
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
>  fs/debugfs/file.c     | 10 ----------
>  fs/debugfs/inode.c    |  7 -------
>  fs/debugfs/internal.h |  6 ------
>  3 files changed, 23 deletions(-)
> 
> diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index
> a5ade8c16375..5063434be0fc 100644
> --- a/fs/debugfs/file.c
> +++ b/fs/debugfs/file.c
> @@ -108,12 +108,6 @@ int debugfs_file_get(struct dentry *dentry)
>  			kfree(fsd);
>  			fsd = READ_ONCE(dentry->d_fsdata);
>  		}
> -#ifdef CONFIG_LOCKDEP
> -		fsd->lock_name = kasprintf(GFP_KERNEL, "debugfs:%pd",
> dentry);
> -		lockdep_register_key(&fsd->key);
> -		lockdep_init_map(&fsd->lockdep_map, fsd->lock_name ?:
> "debugfs",
> -				 &fsd->key, 0);
> -#endif
>  		INIT_LIST_HEAD(&fsd->cancellations);
>  		mutex_init(&fsd->cancellations_mtx);
>  	}
> @@ -132,8 +126,6 @@ int debugfs_file_get(struct dentry *dentry)
>  	if (!refcount_inc_not_zero(&fsd->active_users))
>  		return -EIO;
> 
> -	lock_map_acquire_read(&fsd->lockdep_map);
> -
>  	return 0;
>  }
>  EXPORT_SYMBOL_GPL(debugfs_file_get);
> @@ -151,8 +143,6 @@ void debugfs_file_put(struct dentry *dentry)  {
>  	struct debugfs_fsdata *fsd = READ_ONCE(dentry->d_fsdata);
> 
> -	lock_map_release(&fsd->lockdep_map);
> -
>  	if (refcount_dec_and_test(&fsd->active_users))
>  		complete(&fsd->active_users_drained);
>  }
> diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index
> e4e7fe1bd9fb..034a617cb1a5 100644
> --- a/fs/debugfs/inode.c
> +++ b/fs/debugfs/inode.c
> @@ -243,10 +243,6 @@ static void debugfs_release_dentry(struct dentry
> *dentry)
> 
>  	/* check it wasn't a dir (no fsdata) or automount (no real_fops) */
>  	if (fsd && fsd->real_fops) {
> -#ifdef CONFIG_LOCKDEP
> -		lockdep_unregister_key(&fsd->key);
> -		kfree(fsd->lock_name);
> -#endif
>  		WARN_ON(!list_empty(&fsd->cancellations));
>  		mutex_destroy(&fsd->cancellations_mtx);
>  	}
> @@ -755,9 +751,6 @@ static void __debugfs_file_removed(struct dentry
> *dentry)
>  	if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)
>  		return;
> 
> -	lock_map_acquire(&fsd->lockdep_map);
> -	lock_map_release(&fsd->lockdep_map);
> -
>  	/* if we hit zero, just wait for all to finish */
>  	if (!refcount_dec_and_test(&fsd->active_users)) {
>  		wait_for_completion(&fsd->active_users_drained);
> diff --git a/fs/debugfs/internal.h b/fs/debugfs/internal.h index
> 0c4c68cf161f..dae80c2a469e 100644
> --- a/fs/debugfs/internal.h
> +++ b/fs/debugfs/internal.h
> @@ -7,7 +7,6 @@
> 
>  #ifndef _DEBUGFS_INTERNAL_H_
>  #define _DEBUGFS_INTERNAL_H_
> -#include <linux/lockdep.h>
>  #include <linux/list.h>
> 
>  struct file_operations;
> @@ -25,11 +24,6 @@ struct debugfs_fsdata {
>  		struct {
>  			refcount_t active_users;
>  			struct completion active_users_drained; -#ifdef
> CONFIG_LOCKDEP
> -			struct lockdep_map lockdep_map;
> -			struct lock_class_key key;
> -			char *lock_name;
> -#endif
> 
>  			/* protect cancellations */
>  			struct mutex cancellations_mtx;
> --
> 2.25.1


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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
  2023-12-06  7:58 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-12-06 19:34   ` Saarinen, Jani
  2023-12-07  9:20     ` Illipilli, TejasreeX
  0 siblings, 1 reply; 11+ messages in thread
From: Saarinen, Jani @ 2023-12-06 19:34 UTC (permalink / raw)
  To: intel-gfx, Borah, Chaitanya Kumar, LGCI Bug Filing

Hi. 

> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of
> Patchwork
> Sent: Wednesday, December 6, 2023 9:58 AM
> To: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>
> Cc: intel-gfx@lists.freedesktop.org
> Subject: [Intel-gfx] ✗ Fi.CI.BAT: failure for Revert "debugfs: annotate debugfs
> handlers vs. removal with lockdep" (rev2)
> 
> Patch Details
> Series:	Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
> (rev2)
> URL:	https://patchwork.freedesktop.org/series/127359/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/index.html
> 
> 
> CI Bug Log - changes from CI_DRM_13983 -> Patchwork_127359v2
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with Patchwork_127359v2 absolutely need to
> be verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_127359v2, 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/Patchwork_127359v2/index.html
> 
> 
> Participating hosts (35 -> 36)
> 
> 
> Additional (2): bat-dg2-8 bat-mtlp-8
> Missing (1): fi-snb-2520m
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in
> Patchwork_127359v2:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@kms_pipe_crc_basic@suspend-read-crc:
> 
> 	*	bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@kms_pipe_crc_basic@suspend-read-crc.html>
> 
> *	igt@kms_psr@psr_cursor_plane_move:
Has been always skipping: https://intel-gfx-ci.01.org/tree/drm-tip/bat-all.html?testfilter=suspend-read-crc&hosts=mtlp-6 
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_psr@psr_cursor_plane_move.html>  +3 other tests skip
Has been always skipping: https://intel-gfx-ci.01.org/tree/drm-tip/bat-all.html?testfilter=psr_cursor_plane_move&hosts=mtlp-8 

No issues caused by patch. Bug-filing team, please report

> 
> 
> New tests
> 
> 
> New tests have been introduced between CI_DRM_13983 and
> Patchwork_127359v2:
> 
> 
> New IGT tests (12)
> 
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-
> 7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-
> 7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-
> 7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7:
> 
> 	*	Statuses : 1 abort(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc@pipe-c-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> 
> Known issues
> 
> 
> Here are the changes found in Patchwork_127359v2 that come from known
> issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@debugfs_test@basic-hwmon:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@debugfs_test@basic-hwmon.html>  (i915#9318
> <https://gitlab.freedesktop.org/drm/intel/issues/9318> )
> 
> *	igt@gem_lmem_swapping@basic:
> 
> 	*	fi-apl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-apl-guc/igt@gem_lmem_swapping@basic.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other
> tests skip
> 
> 	*	bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-jsl-3/igt@gem_lmem_swapping@basic.html>
> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other
> tests skip
> 
> 	*	fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-
> j4005/igt@gem_lmem_swapping@basic.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-
> 9/igt@gem_lmem_swapping@basic.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-skl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-skl-guc/igt@gem_lmem_swapping@basic.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other
> tests skip
> 
> 	*	fi-kbl-7567u: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> 7567u/igt@gem_lmem_swapping@basic.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-cfl-8700k: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8700k/igt@gem_lmem_swapping@basic.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-elk-e7500: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-
> e7500/igt@gem_lmem_swapping@basic.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests skip
> 
> *	igt@gem_lmem_swapping@parallel-random-engines:
> 
> 	*	fi-bsw-nick: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> nick/igt@gem_lmem_swapping@parallel-random-engines.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +3 other tests skip
> 
> 	*	bat-kbl-2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-kbl-2/igt@gem_lmem_swapping@parallel-
> random-engines.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests skip
> 
> 	*	fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-
> 11600/igt@gem_lmem_swapping@parallel-random-engines.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-
> 1115g4/igt@gem_lmem_swapping@parallel-random-engines.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> *	igt@gem_lmem_swapping@random-engines:
> 
> 	*	fi-bsw-n3050: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> n3050/igt@gem_lmem_swapping@random-engines.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +3 other tests skip
> 
> 	*	fi-skl-6600u: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-
> 6600u/igt@gem_lmem_swapping@random-engines.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	bat-adls-5: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-
> 5/igt@gem_lmem_swapping@random-engines.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> *	igt@gem_lmem_swapping@verify-random:
> 
> 	*	fi-cfl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-cfl-guc/igt@gem_lmem_swapping@verify-
> random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@gem_lmem_swapping@verify-random.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-kbl-x1275: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> x1275/igt@gem_lmem_swapping@verify-random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-cfl-8109u: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8109u/igt@gem_lmem_swapping@verify-random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-ivb-3770: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-
> 3770/igt@gem_lmem_swapping@verify-random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests skip
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_lmem_swapping@verify-random.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-kbl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-kbl-guc/igt@gem_lmem_swapping@verify-
> random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> 	*	fi-ilk-650: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-ilk-650/igt@gem_lmem_swapping@verify-
> random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests skip
> 
> 	*	bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-jsl-1/igt@gem_lmem_swapping@verify-
> random.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other tests skip
> 
> *	igt@gem_mmap@basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_mmap@basic.html>  (i915#4083
> <https://gitlab.freedesktop.org/drm/intel/issues/4083> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@gem_mmap@basic.html>  (i915#4083
> <https://gitlab.freedesktop.org/drm/intel/issues/4083> )
> 
> *	igt@gem_mmap_gtt@basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_mmap_gtt@basic.html>  (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +2 other tests skip
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@gem_mmap_gtt@basic.html>  (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +2 other tests skip
> 
> *	igt@gem_render_tiled_blits@basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_render_tiled_blits@basic.html>  (i915#4079
> <https://gitlab.freedesktop.org/drm/intel/issues/4079> ) +1 other test skip
> 
> *	igt@gem_tiled_pread_basic:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@gem_tiled_pread_basic.html>  (i915#4079
> <https://gitlab.freedesktop.org/drm/intel/issues/4079> ) +1 other test skip
> 
> *	igt@i915_pm_rpm@module-reload:
> 
> 	*	fi-blb-e6850: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-
> e6850/igt@i915_pm_rpm@module-reload.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests skip
> 
> *	igt@i915_pm_rps@basic-api:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@i915_pm_rps@basic-api.html>  (i915#6621
> <https://gitlab.freedesktop.org/drm/intel/issues/6621> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@i915_pm_rps@basic-
> api.html>  (i915#6621 <https://gitlab.freedesktop.org/drm/intel/issues/6621> )
> 
> *	igt@i915_selftest@live@gt_heartbeat:
> 
> 	*	fi-apl-guc: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-
> guc/igt@i915_selftest@live@gt_heartbeat.html>  (i915#5334
> <https://gitlab.freedesktop.org/drm/intel/issues/5334> )
> 
> *	igt@i915_selftest@live@hangcheck:
> 
> 	*	bat-adls-5: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-
> 5/igt@i915_selftest@live@hangcheck.html>  (i915#5591
> <https://gitlab.freedesktop.org/drm/intel/issues/5591> )
> 
> *	igt@i915_suspend@basic-s3-without-i915:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-
> 1115g4/igt@i915_suspend@basic-s3-without-i915.html>  (i915#7443
> <https://gitlab.freedesktop.org/drm/intel/issues/7443> )
> 
> 	*	bat-atsm-1: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-
> 1/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> 	*	bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> 	*	fi-kbl-x1275: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> x1275/igt@i915_suspend@basic-s3-without-i915.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +1 other test skip
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> *	igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html>  (i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html>  (i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190> )
> 
> *	igt@kms_addfb_basic@basic-y-tiled-legacy:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_addfb_basic@basic-y-tiled-legacy.html>  (i915#4212
> <https://gitlab.freedesktop.org/drm/intel/issues/4212> ) +8 other tests skip
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@basic-y-tiled-legacy.html>  (i915#4215
> <https://gitlab.freedesktop.org/drm/intel/issues/4215>  / i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190> )
> 
> *	igt@kms_addfb_basic@framebuffer-vs-set-tiling:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html>  (i915#4212
> <https://gitlab.freedesktop.org/drm/intel/issues/4212> ) +6 other tests skip
> 
> *	igt@kms_addfb_basic@tile-pitch-mismatch:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@tile-pitch-mismatch.html>  (i915#4212
> <https://gitlab.freedesktop.org/drm/intel/issues/4212>  / i915#5608
> <https://gitlab.freedesktop.org/drm/intel/issues/5608> )
> 
> *	igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213> ) +1 other
> test skip
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>  / i915#4213
> <https://gitlab.freedesktop.org/drm/intel/issues/4213>  / i915#5608
> <https://gitlab.freedesktop.org/drm/intel/issues/5608> ) +1 other test skip
> 
> *	igt@kms_dsc@dsc-basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_dsc@dsc-
> basic.html>  (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>
> / i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840>  / i915#9159
> <https://gitlab.freedesktop.org/drm/intel/issues/9159> )
> 
> *	igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6:
> 
> 	*	bat-adlp-11: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-
> dp6.html>  -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-
> dp6.html>  (i915#6868 <https://gitlab.freedesktop.org/drm/intel/issues/6868> )
> 
> *	igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6:
> 
> 	*	bat-adlp-11: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-
> dp6.html>  -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-
> dp6.html>  (i915#6121 <https://gitlab.freedesktop.org/drm/intel/issues/6121> )
> +2 other tests fail
> 
> *	igt@kms_force_connector_basic@force-load-detect:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_force_connector_basic@force-load-detect.html>  (fdo#109285
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_force_connector_basic@force-load-detect.html>  (fdo#109285
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> )
> 
> *	igt@kms_force_connector_basic@prune-stale-modes:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_force_connector_basic@prune-stale-modes.html>  (i915#5274
> <https://gitlab.freedesktop.org/drm/intel/issues/5274> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_force_connector_basic@prune-stale-modes.html>  (i915#5274
> <https://gitlab.freedesktop.org/drm/intel/issues/5274> )
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7
> (NEW):
> 
> 	*	bat-adlp-11: NOTRUN -> ABORT <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-
> 11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> )
> 
> *	igt@kms_pipe_crc_basic@suspend-read-crc:
> 
> 	*	fi-kbl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-kbl-guc/igt@kms_pipe_crc_basic@suspend-read-
> crc.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> )
> 
> 	*	bat-atsm-1: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-
> 1/igt@kms_pipe_crc_basic@suspend-read-crc.html>  (i915#1836
> <https://gitlab.freedesktop.org/drm/intel/issues/1836> )
> 
> *	igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
> 
> 	*	bat-dg2-8: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html>  (i915#1982
> <https://gitlab.freedesktop.org/drm/intel/issues/1982>  / i915#9280
> <https://gitlab.freedesktop.org/drm/intel/issues/9280> )
> 
> *	igt@kms_pm_backlight@basic-brightness:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_pm_backlight@basic-brightness.html>  (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354> )
> 
> *	igt@kms_psr@psr_cursor_plane_move:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_psr@psr_cursor_plane_move.html>  (i915#9673
> <https://gitlab.freedesktop.org/drm/intel/issues/9673>  / i915#9736
> <https://gitlab.freedesktop.org/drm/intel/issues/9736> ) +3 other tests skip
> 
> *	igt@kms_setmode@basic-clone-single-crtc:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_setmode@basic-clone-single-crtc.html>  (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>  / i915#8809
> <https://gitlab.freedesktop.org/drm/intel/issues/8809> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_setmode@basic-clone-single-crtc.html>  (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> )
> 
> *	igt@prime_vgem@basic-fence-flip:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-
> fence-flip.html>  (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708> )
> 
> *	igt@prime_vgem@basic-fence-mmap:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-
> fence-mmap.html>  (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708>  / i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +1 other test skip
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@prime_vgem@basic-fence-mmap.html>  (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708>  / i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +1 other test skip
> 
> *	igt@prime_vgem@basic-fence-read:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@prime_vgem@basic-fence-read.html>  (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708> ) +2 other tests skip
> 
> *	igt@prime_vgem@basic-write:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-
> write.html>  (i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291>
> / i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708> ) +2 other
> tests skip
> 
> 
> Possible fixes
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-bsw-n3050: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> n3050/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-cfl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-mtlp-6: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-dg2-9: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 9/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-kbl-x1275: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668>  / i915#9793
> <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> x1275/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-jsl-1: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-jsl-1/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-
> 1/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-cfl-8700k: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8700k/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-blb-e6850: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-
> e6850/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-kbl-2: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-kbl-
> 2/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-rkl-11600: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-
> 11600/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-skl-6600u: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-skl-6600u/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-
> 6600u/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-adls-5: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adls-5/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-
> 5/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-apl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-atsm-1: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-
> 1/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-dg1-7: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg1-
> 7/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-jsl-3: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-jsl-3/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-
> 3/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-glk-j4005: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-
> j4005/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-adlp-9: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adlp-9/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-
> 9/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-skl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-skl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-dg2-11: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 11/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-cfl-8109u: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / i915#8668
> <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8109u/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-kbl-7567u: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>  / i915#9793
> <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> 7567u/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-ivb-3770: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-ivb-3770/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-
> 3770/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-elk-e7500: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-
> e7500/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-bsw-nick: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> nick/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-kbl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-kbl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>  / i915#9793
> <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-ilk-650: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-ilk-650/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ilk-
> 650/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-tgl-1115g4: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-
> 1115g4/igt@core_hotunplug@unbind-rebind.html>
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
> Build changes
> 
> 
> *	Linux: CI_DRM_13983 -> Patchwork_127359v2
> 
> CI-20190529: 20190529
> CI_DRM_13983: a9d99261a978835b02e248fe18af3026416af3e8 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_7622: 48a47d91b7727215b965690c69d84159c8fb1aa2 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_127359v2: a9d99261a978835b02e248fe18af3026416af3e8 @
> git://anongit.freedesktop.org/gfx-ci/linux
> 
> 
> Linux commits
> 
> 
> 958303ae297c Revert "debugfs: annotate debugfs handlers vs. removal with
> lockdep"


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

* Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
  2023-12-06 11:04 ` [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Shankar, Uma
@ 2023-12-06 19:41   ` Saarinen, Jani
  2023-12-06 21:32     ` Lucas De Marchi
  0 siblings, 1 reply; 11+ messages in thread
From: Saarinen, Jani @ 2023-12-06 19:41 UTC (permalink / raw)
  To: Shankar, Uma, Borah, Chaitanya Kumar, intel-gfx, Vivi, Rodrigo,
	De Marchi, Lucas

Hi, 
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Shankar,
> Uma
> Sent: Wednesday, December 6, 2023 1:05 PM
> To: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; intel-
> gfx@lists.freedesktop.org
> Subject: Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs
> handlers vs. removal with lockdep"
> 
> 
> 
> > -----Original Message-----
> > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of
> > Chaitanya Kumar Borah
> > Sent: Wednesday, December 6, 2023 12:17 PM
> > To: intel-gfx@lists.freedesktop.org
> > Subject: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate
> > debugfs handlers vs. removal with lockdep"
> >
> > From: Johannes Berg <johannes.berg@intel.com>
> >
> > This reverts commit f4acfcd4deb1 ("debugfs: annotate debugfs handlers vs.
> > removal with lockdep"), it appears to have false positives and really
> > shouldn't have been in the -rc series with the fixes anyway.
> 
> Acked-by: Uma Shankar <uma.shankar@intel.com>
> 
> Hi Chaitanya,
> Please get the full CI run executed with this change, once its green we can plan merge.
Just commented on "issues" (no real issues ) on BAT and asked to re-report but we really should use sometimes by-pass shards when we see regression on this magnitude. 
This has big impact on core/gem tests https://intel-gfx-ci.01.org/tree/drm-tip/index.html?testfilter=module%7Cgem%7Ccore 
Even on module load. I am leaning to break process and not wait to Full CI if someone who has merge rights (eg @Vivi, Rodrigo, @De Marchi, Lucas) agree here? 

Br,
Jani
> 
> Regards,
> Uma Shankar
> 
> > Link:https://patchwork.kernel.org/project/linux-
> > fsdevel/patch/20231202114936.fd55431ab160.I911aa53abeeca138126f69
> > 0d383a89b13eb05667@changeid/
> > Reference: https://gitlab.freedesktop.org/drm/intel/-/issues/9802
> > Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > ---
> >  fs/debugfs/file.c     | 10 ----------
> >  fs/debugfs/inode.c    |  7 -------
> >  fs/debugfs/internal.h |  6 ------
> >  3 files changed, 23 deletions(-)
> >
> > diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index
> > a5ade8c16375..5063434be0fc 100644
> > --- a/fs/debugfs/file.c
> > +++ b/fs/debugfs/file.c
> > @@ -108,12 +108,6 @@ int debugfs_file_get(struct dentry *dentry)
> >  			kfree(fsd);
> >  			fsd = READ_ONCE(dentry->d_fsdata);
> >  		}
> > -#ifdef CONFIG_LOCKDEP
> > -		fsd->lock_name = kasprintf(GFP_KERNEL, "debugfs:%pd",
> > dentry);
> > -		lockdep_register_key(&fsd->key);
> > -		lockdep_init_map(&fsd->lockdep_map, fsd->lock_name ?:
> > "debugfs",
> > -				 &fsd->key, 0);
> > -#endif
> >  		INIT_LIST_HEAD(&fsd->cancellations);
> >  		mutex_init(&fsd->cancellations_mtx);
> >  	}
> > @@ -132,8 +126,6 @@ int debugfs_file_get(struct dentry *dentry)
> >  	if (!refcount_inc_not_zero(&fsd->active_users))
> >  		return -EIO;
> >
> > -	lock_map_acquire_read(&fsd->lockdep_map);
> > -
> >  	return 0;
> >  }
> >  EXPORT_SYMBOL_GPL(debugfs_file_get);
> > @@ -151,8 +143,6 @@ void debugfs_file_put(struct dentry *dentry)  {
> >  	struct debugfs_fsdata *fsd = READ_ONCE(dentry->d_fsdata);
> >
> > -	lock_map_release(&fsd->lockdep_map);
> > -
> >  	if (refcount_dec_and_test(&fsd->active_users))
> >  		complete(&fsd->active_users_drained);
> >  }
> > diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index
> > e4e7fe1bd9fb..034a617cb1a5 100644
> > --- a/fs/debugfs/inode.c
> > +++ b/fs/debugfs/inode.c
> > @@ -243,10 +243,6 @@ static void debugfs_release_dentry(struct dentry
> > *dentry)
> >
> >  	/* check it wasn't a dir (no fsdata) or automount (no real_fops) */
> >  	if (fsd && fsd->real_fops) {
> > -#ifdef CONFIG_LOCKDEP
> > -		lockdep_unregister_key(&fsd->key);
> > -		kfree(fsd->lock_name);
> > -#endif
> >  		WARN_ON(!list_empty(&fsd->cancellations));
> >  		mutex_destroy(&fsd->cancellations_mtx);
> >  	}
> > @@ -755,9 +751,6 @@ static void __debugfs_file_removed(struct dentry
> > *dentry)
> >  	if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)
> >  		return;
> >
> > -	lock_map_acquire(&fsd->lockdep_map);
> > -	lock_map_release(&fsd->lockdep_map);
> > -
> >  	/* if we hit zero, just wait for all to finish */
> >  	if (!refcount_dec_and_test(&fsd->active_users)) {
> >  		wait_for_completion(&fsd->active_users_drained);
> > diff --git a/fs/debugfs/internal.h b/fs/debugfs/internal.h index
> > 0c4c68cf161f..dae80c2a469e 100644
> > --- a/fs/debugfs/internal.h
> > +++ b/fs/debugfs/internal.h
> > @@ -7,7 +7,6 @@
> >
> >  #ifndef _DEBUGFS_INTERNAL_H_
> >  #define _DEBUGFS_INTERNAL_H_
> > -#include <linux/lockdep.h>
> >  #include <linux/list.h>
> >
> >  struct file_operations;
> > @@ -25,11 +24,6 @@ struct debugfs_fsdata {
> >  		struct {
> >  			refcount_t active_users;
> >  			struct completion active_users_drained; -#ifdef
> CONFIG_LOCKDEP
> > -			struct lockdep_map lockdep_map;
> > -			struct lock_class_key key;
> > -			char *lock_name;
> > -#endif
> >
> >  			/* protect cancellations */
> >  			struct mutex cancellations_mtx;
> > --
> > 2.25.1


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

* Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
  2023-12-06 19:41   ` Saarinen, Jani
@ 2023-12-06 21:32     ` Lucas De Marchi
  2023-12-07  7:29       ` Saarinen, Jani
  0 siblings, 1 reply; 11+ messages in thread
From: Lucas De Marchi @ 2023-12-06 21:32 UTC (permalink / raw)
  To: Saarinen, Jani; +Cc: intel-gfx, Vivi, Rodrigo

On Wed, Dec 06, 2023 at 07:41:04PM +0000, Jani Saarinen wrote:
>Hi,
>> -----Original Message-----
>> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Shankar,
>> Uma
>> Sent: Wednesday, December 6, 2023 1:05 PM
>> To: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; intel-
>> gfx@lists.freedesktop.org
>> Subject: Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs
>> handlers vs. removal with lockdep"
>>
>>
>>
>> > -----Original Message-----
>> > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of
>> > Chaitanya Kumar Borah
>> > Sent: Wednesday, December 6, 2023 12:17 PM
>> > To: intel-gfx@lists.freedesktop.org
>> > Subject: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate
>> > debugfs handlers vs. removal with lockdep"
>> >
>> > From: Johannes Berg <johannes.berg@intel.com>
>> >
>> > This reverts commit f4acfcd4deb1 ("debugfs: annotate debugfs handlers vs.
>> > removal with lockdep"), it appears to have false positives and really
>> > shouldn't have been in the -rc series with the fixes anyway.
>>
>> Acked-by: Uma Shankar <uma.shankar@intel.com>
>>
>> Hi Chaitanya,
>> Please get the full CI run executed with this change, once its green we can plan merge.
>Just commented on "issues" (no real issues ) on BAT and asked to re-report but we really should use sometimes by-pass shards when we see regression on this magnitude.
>This has big impact on core/gem tests https://intel-gfx-ci.01.org/tree/drm-tip/index.html?testfilter=module%7Cgem%7Ccore
>Even on module load. I am leaning to break process and not wait to Full CI if someone who has merge rights (eg @Vivi, Rodrigo, @De Marchi, Lucas) agree here?

I think this is the convincing link:
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/index.html?testfilter=module%7Cgem%7Ccore

Applied with ack on irc by Rodrigo.

Lucas De Marchi

>
>Br,
>Jani
>>
>> Regards,
>> Uma Shankar
>>
>> > Link:https://patchwork.kernel.org/project/linux-
>> > fsdevel/patch/20231202114936.fd55431ab160.I911aa53abeeca138126f69
>> > 0d383a89b13eb05667@changeid/
>> > Reference: https://gitlab.freedesktop.org/drm/intel/-/issues/9802
>> > Signed-off-by: Johannes Berg <johannes.berg@intel.com>
>> > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> > ---
>> >  fs/debugfs/file.c     | 10 ----------
>> >  fs/debugfs/inode.c    |  7 -------
>> >  fs/debugfs/internal.h |  6 ------
>> >  3 files changed, 23 deletions(-)
>> >
>> > diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index
>> > a5ade8c16375..5063434be0fc 100644
>> > --- a/fs/debugfs/file.c
>> > +++ b/fs/debugfs/file.c
>> > @@ -108,12 +108,6 @@ int debugfs_file_get(struct dentry *dentry)
>> >  			kfree(fsd);
>> >  			fsd = READ_ONCE(dentry->d_fsdata);
>> >  		}
>> > -#ifdef CONFIG_LOCKDEP
>> > -		fsd->lock_name = kasprintf(GFP_KERNEL, "debugfs:%pd",
>> > dentry);
>> > -		lockdep_register_key(&fsd->key);
>> > -		lockdep_init_map(&fsd->lockdep_map, fsd->lock_name ?:
>> > "debugfs",
>> > -				 &fsd->key, 0);
>> > -#endif
>> >  		INIT_LIST_HEAD(&fsd->cancellations);
>> >  		mutex_init(&fsd->cancellations_mtx);
>> >  	}
>> > @@ -132,8 +126,6 @@ int debugfs_file_get(struct dentry *dentry)
>> >  	if (!refcount_inc_not_zero(&fsd->active_users))
>> >  		return -EIO;
>> >
>> > -	lock_map_acquire_read(&fsd->lockdep_map);
>> > -
>> >  	return 0;
>> >  }
>> >  EXPORT_SYMBOL_GPL(debugfs_file_get);
>> > @@ -151,8 +143,6 @@ void debugfs_file_put(struct dentry *dentry)  {
>> >  	struct debugfs_fsdata *fsd = READ_ONCE(dentry->d_fsdata);
>> >
>> > -	lock_map_release(&fsd->lockdep_map);
>> > -
>> >  	if (refcount_dec_and_test(&fsd->active_users))
>> >  		complete(&fsd->active_users_drained);
>> >  }
>> > diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index
>> > e4e7fe1bd9fb..034a617cb1a5 100644
>> > --- a/fs/debugfs/inode.c
>> > +++ b/fs/debugfs/inode.c
>> > @@ -243,10 +243,6 @@ static void debugfs_release_dentry(struct dentry
>> > *dentry)
>> >
>> >  	/* check it wasn't a dir (no fsdata) or automount (no real_fops) */
>> >  	if (fsd && fsd->real_fops) {
>> > -#ifdef CONFIG_LOCKDEP
>> > -		lockdep_unregister_key(&fsd->key);
>> > -		kfree(fsd->lock_name);
>> > -#endif
>> >  		WARN_ON(!list_empty(&fsd->cancellations));
>> >  		mutex_destroy(&fsd->cancellations_mtx);
>> >  	}
>> > @@ -755,9 +751,6 @@ static void __debugfs_file_removed(struct dentry
>> > *dentry)
>> >  	if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)
>> >  		return;
>> >
>> > -	lock_map_acquire(&fsd->lockdep_map);
>> > -	lock_map_release(&fsd->lockdep_map);
>> > -
>> >  	/* if we hit zero, just wait for all to finish */
>> >  	if (!refcount_dec_and_test(&fsd->active_users)) {
>> >  		wait_for_completion(&fsd->active_users_drained);
>> > diff --git a/fs/debugfs/internal.h b/fs/debugfs/internal.h index
>> > 0c4c68cf161f..dae80c2a469e 100644
>> > --- a/fs/debugfs/internal.h
>> > +++ b/fs/debugfs/internal.h
>> > @@ -7,7 +7,6 @@
>> >
>> >  #ifndef _DEBUGFS_INTERNAL_H_
>> >  #define _DEBUGFS_INTERNAL_H_
>> > -#include <linux/lockdep.h>
>> >  #include <linux/list.h>
>> >
>> >  struct file_operations;
>> > @@ -25,11 +24,6 @@ struct debugfs_fsdata {
>> >  		struct {
>> >  			refcount_t active_users;
>> >  			struct completion active_users_drained; -#ifdef
>> CONFIG_LOCKDEP
>> > -			struct lockdep_map lockdep_map;
>> > -			struct lock_class_key key;
>> > -			char *lock_name;
>> > -#endif
>> >
>> >  			/* protect cancellations */
>> >  			struct mutex cancellations_mtx;
>> > --
>> > 2.25.1
>

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

* Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
  2023-12-06 21:32     ` Lucas De Marchi
@ 2023-12-07  7:29       ` Saarinen, Jani
  0 siblings, 0 replies; 11+ messages in thread
From: Saarinen, Jani @ 2023-12-07  7:29 UTC (permalink / raw)
  To: De Marchi, Lucas; +Cc: intel-gfx, Vivi, Rodrigo



> -----Original Message-----
> From: De Marchi, Lucas <lucas.demarchi@intel.com>
> Sent: Wednesday, December 6, 2023 11:33 PM
> To: Saarinen, Jani <jani.saarinen@intel.com>
> Cc: Shankar, Uma <uma.shankar@intel.com>; Borah, Chaitanya Kumar
> <chaitanya.kumar.borah@intel.com>; intel-gfx@lists.freedesktop.org; Vivi, Rodrigo
> <rodrigo.vivi@intel.com>
> Subject: Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs
> handlers vs. removal with lockdep"
> 
> On Wed, Dec 06, 2023 at 07:41:04PM +0000, Jani Saarinen wrote:
> >Hi,
> >> -----Original Message-----
> >> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf
> >> Of Shankar, Uma
> >> Sent: Wednesday, December 6, 2023 1:05 PM
> >> To: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; intel-
> >> gfx@lists.freedesktop.org
> >> Subject: Re: [Intel-gfx] [topic/core-for-CI] Revert "debugfs:
> >> annotate debugfs handlers vs. removal with lockdep"
> >>
> >>
> >>
> >> > -----Original Message-----
> >> > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf
> >> > Of Chaitanya Kumar Borah
> >> > Sent: Wednesday, December 6, 2023 12:17 PM
> >> > To: intel-gfx@lists.freedesktop.org
> >> > Subject: [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate
> >> > debugfs handlers vs. removal with lockdep"
> >> >
> >> > From: Johannes Berg <johannes.berg@intel.com>
> >> >
> >> > This reverts commit f4acfcd4deb1 ("debugfs: annotate debugfs handlers vs.
> >> > removal with lockdep"), it appears to have false positives and
> >> > really shouldn't have been in the -rc series with the fixes anyway.
> >>
> >> Acked-by: Uma Shankar <uma.shankar@intel.com>
> >>
> >> Hi Chaitanya,
> >> Please get the full CI run executed with this change, once its green we can plan
> merge.
> >Just commented on "issues" (no real issues ) on BAT and asked to re-report but we
> really should use sometimes by-pass shards when we see regression on this
> magnitude.
> >This has big impact on core/gem tests
> >https://intel-gfx-ci.01.org/tree/drm-tip/index.html?testfilter=module%7
> >Cgem%7Ccore Even on module load. I am leaning to break process and not
> >wait to Full CI if someone who has merge rights (eg @Vivi, Rodrigo, @De Marchi,
> Lucas) agree here?
> 
> I think this is the convincing link:
> https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/index.html?testfilter=module%7Cgem%7Ccore
> 
> Applied with ack on irc by Rodrigo.
Thank you! 

> 
> Lucas De Marchi
> 
> >
> >Br,
> >Jani
> >>
> >> Regards,
> >> Uma Shankar
> >>
> >> > Link:https://patchwork.kernel.org/project/linux-
> >> > fsdevel/patch/20231202114936.fd55431ab160.I911aa53abeeca138126f69
> >> > 0d383a89b13eb05667@changeid/
> >> > Reference: https://gitlab.freedesktop.org/drm/intel/-/issues/9802
> >> > Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> >> > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >> > ---
> >> >  fs/debugfs/file.c     | 10 ----------
> >> >  fs/debugfs/inode.c    |  7 -------
> >> >  fs/debugfs/internal.h |  6 ------
> >> >  3 files changed, 23 deletions(-)
> >> >
> >> > diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index
> >> > a5ade8c16375..5063434be0fc 100644
> >> > --- a/fs/debugfs/file.c
> >> > +++ b/fs/debugfs/file.c
> >> > @@ -108,12 +108,6 @@ int debugfs_file_get(struct dentry *dentry)
> >> >  			kfree(fsd);
> >> >  			fsd = READ_ONCE(dentry->d_fsdata);
> >> >  		}
> >> > -#ifdef CONFIG_LOCKDEP
> >> > -		fsd->lock_name = kasprintf(GFP_KERNEL, "debugfs:%pd",
> >> > dentry);
> >> > -		lockdep_register_key(&fsd->key);
> >> > -		lockdep_init_map(&fsd->lockdep_map, fsd->lock_name ?:
> >> > "debugfs",
> >> > -				 &fsd->key, 0);
> >> > -#endif
> >> >  		INIT_LIST_HEAD(&fsd->cancellations);
> >> >  		mutex_init(&fsd->cancellations_mtx);
> >> >  	}
> >> > @@ -132,8 +126,6 @@ int debugfs_file_get(struct dentry *dentry)
> >> >  	if (!refcount_inc_not_zero(&fsd->active_users))
> >> >  		return -EIO;
> >> >
> >> > -	lock_map_acquire_read(&fsd->lockdep_map);
> >> > -
> >> >  	return 0;
> >> >  }
> >> >  EXPORT_SYMBOL_GPL(debugfs_file_get);
> >> > @@ -151,8 +143,6 @@ void debugfs_file_put(struct dentry *dentry)  {
> >> >  	struct debugfs_fsdata *fsd = READ_ONCE(dentry->d_fsdata);
> >> >
> >> > -	lock_map_release(&fsd->lockdep_map);
> >> > -
> >> >  	if (refcount_dec_and_test(&fsd->active_users))
> >> >  		complete(&fsd->active_users_drained);
> >> >  }
> >> > diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index
> >> > e4e7fe1bd9fb..034a617cb1a5 100644
> >> > --- a/fs/debugfs/inode.c
> >> > +++ b/fs/debugfs/inode.c
> >> > @@ -243,10 +243,6 @@ static void debugfs_release_dentry(struct
> >> > dentry
> >> > *dentry)
> >> >
> >> >  	/* check it wasn't a dir (no fsdata) or automount (no real_fops) */
> >> >  	if (fsd && fsd->real_fops) {
> >> > -#ifdef CONFIG_LOCKDEP
> >> > -		lockdep_unregister_key(&fsd->key);
> >> > -		kfree(fsd->lock_name);
> >> > -#endif
> >> >  		WARN_ON(!list_empty(&fsd->cancellations));
> >> >  		mutex_destroy(&fsd->cancellations_mtx);
> >> >  	}
> >> > @@ -755,9 +751,6 @@ static void __debugfs_file_removed(struct
> >> > dentry
> >> > *dentry)
> >> >  	if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)
> >> >  		return;
> >> >
> >> > -	lock_map_acquire(&fsd->lockdep_map);
> >> > -	lock_map_release(&fsd->lockdep_map);
> >> > -
> >> >  	/* if we hit zero, just wait for all to finish */
> >> >  	if (!refcount_dec_and_test(&fsd->active_users)) {
> >> >  		wait_for_completion(&fsd->active_users_drained);
> >> > diff --git a/fs/debugfs/internal.h b/fs/debugfs/internal.h index
> >> > 0c4c68cf161f..dae80c2a469e 100644
> >> > --- a/fs/debugfs/internal.h
> >> > +++ b/fs/debugfs/internal.h
> >> > @@ -7,7 +7,6 @@
> >> >
> >> >  #ifndef _DEBUGFS_INTERNAL_H_
> >> >  #define _DEBUGFS_INTERNAL_H_
> >> > -#include <linux/lockdep.h>
> >> >  #include <linux/list.h>
> >> >
> >> >  struct file_operations;
> >> > @@ -25,11 +24,6 @@ struct debugfs_fsdata {
> >> >  		struct {
> >> >  			refcount_t active_users;
> >> >  			struct completion active_users_drained; -#ifdef
> >> CONFIG_LOCKDEP
> >> > -			struct lockdep_map lockdep_map;
> >> > -			struct lock_class_key key;
> >> > -			char *lock_name;
> >> > -#endif
> >> >
> >> >  			/* protect cancellations */
> >> >  			struct mutex cancellations_mtx;
> >> > --
> >> > 2.25.1
> >

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
  2023-12-06  6:47 [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Chaitanya Kumar Borah
                   ` (2 preceding siblings ...)
  2023-12-06 11:04 ` [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Shankar, Uma
@ 2023-12-07  9:16 ` Patchwork
  2023-12-07 11:10 ` ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-07  9:16 UTC (permalink / raw)
  To: Chaitanya Kumar Borah; +Cc: intel-gfx

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

== Series Details ==

Series: Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
URL   : https://patchwork.freedesktop.org/series/127359/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13983 -> Patchwork_127359v2
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (35 -> 36)
------------------------------

  Additional (2): bat-dg2-8 bat-mtlp-8 
  Missing    (1): fi-snb-2520m 

New tests
---------

  New tests have been introduced between CI_DRM_13983 and Patchwork_127359v2:

### New IGT tests (12) ###

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7:
    - Statuses : 1 abort(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-c-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-7:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@basic-hwmon:
    - bat-mtlp-8:         NOTRUN -> [SKIP][1] ([i915#9318])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html

  * igt@gem_lmem_swapping@basic:
    - fi-apl-guc:         NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-guc/igt@gem_lmem_swapping@basic.html
    - bat-jsl-3:          NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-3/igt@gem_lmem_swapping@basic.html
    - fi-glk-j4005:       NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-j4005/igt@gem_lmem_swapping@basic.html
    - bat-adlp-9:         NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-9/igt@gem_lmem_swapping@basic.html
    - fi-skl-guc:         NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-guc/igt@gem_lmem_swapping@basic.html
    - fi-kbl-7567u:       NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-7567u/igt@gem_lmem_swapping@basic.html
    - fi-cfl-8700k:       NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html
    - fi-elk-e7500:       NOTRUN -> [SKIP][9] ([fdo#109271]) +4 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-e7500/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-bsw-nick:        NOTRUN -> [SKIP][10] ([fdo#109271]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html
    - bat-kbl-2:          NOTRUN -> [SKIP][11] ([fdo#109271]) +4 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
    - fi-rkl-11600:       NOTRUN -> [SKIP][12] ([i915#4613]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][13] ([i915#4613]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_lmem_swapping@random-engines:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][14] ([fdo#109271]) +3 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
    - fi-skl-6600u:       NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html
    - bat-adls-5:         NOTRUN -> [SKIP][16] ([i915#4613]) +3 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-5/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random:
    - fi-cfl-guc:         NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-guc/igt@gem_lmem_swapping@verify-random.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][18] ([i915#4613]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-x1275/igt@gem_lmem_swapping@verify-random.html
    - fi-cfl-8109u:       NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
    - fi-ivb-3770:        NOTRUN -> [SKIP][21] ([fdo#109271]) +4 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-3770/igt@gem_lmem_swapping@verify-random.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][22] ([i915#4613]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
    - fi-kbl-guc:         NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-guc/igt@gem_lmem_swapping@verify-random.html
    - fi-ilk-650:         NOTRUN -> [SKIP][24] ([fdo#109271]) +4 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ilk-650/igt@gem_lmem_swapping@verify-random.html
    - bat-jsl-1:          NOTRUN -> [SKIP][25] ([i915#4613]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_mmap@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][26] ([i915#4083])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_mmap@basic.html
    - bat-dg2-8:          NOTRUN -> [SKIP][27] ([i915#4083])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@gem_mmap@basic.html

  * igt@gem_mmap_gtt@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][28] ([i915#4077]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
    - bat-dg2-8:          NOTRUN -> [SKIP][29] ([i915#4077]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@gem_mmap_gtt@basic.html

  * igt@gem_render_tiled_blits@basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][30] ([i915#4079]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-dg2-8:          NOTRUN -> [SKIP][31] ([i915#4079]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_rpm@module-reload:
    - fi-blb-e6850:       NOTRUN -> [SKIP][32] ([fdo#109271]) +4 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html

  * igt@i915_pm_rps@basic-api:
    - bat-mtlp-8:         NOTRUN -> [SKIP][33] ([i915#6621])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
    - bat-dg2-8:          NOTRUN -> [SKIP][34] ([i915#6621])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         NOTRUN -> [DMESG-FAIL][35] ([i915#5334])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@hangcheck:
    - bat-adls-5:         NOTRUN -> [DMESG-WARN][36] ([i915#5591])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-5/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-tgl-1115g4:      NOTRUN -> [INCOMPLETE][37] ([i915#7443])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
    - bat-atsm-1:         NOTRUN -> [SKIP][38] ([i915#6645])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][39] ([i915#6645])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][40] ([fdo#109271]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][41] ([i915#6645])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
    - bat-dg2-8:          NOTRUN -> [SKIP][42] ([i915#6645])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][43] ([i915#5190])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-8:          NOTRUN -> [SKIP][44] ([i915#5190])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][45] ([i915#4212]) +8 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-8:          NOTRUN -> [SKIP][46] ([i915#4215] / [i915#5190])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - bat-dg2-8:          NOTRUN -> [SKIP][47] ([i915#4212]) +6 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - bat-dg2-8:          NOTRUN -> [SKIP][48] ([i915#4212] / [i915#5608])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-mtlp-8:         NOTRUN -> [SKIP][49] ([i915#4213]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - bat-dg2-8:          NOTRUN -> [SKIP][50] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-mtlp-8:         NOTRUN -> [SKIP][51] ([i915#3555] / [i915#3840] / [i915#9159])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6:
    - bat-adlp-11:        [PASS][52] -> [DMESG-WARN][53] ([i915#6868])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6:
    - bat-adlp-11:        [PASS][54] -> [FAIL][55] ([i915#6121]) +2 other tests fail
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-mtlp-8:         NOTRUN -> [SKIP][56] ([fdo#109285])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
    - bat-dg2-8:          NOTRUN -> [SKIP][57] ([fdo#109285])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-mtlp-8:         NOTRUN -> [SKIP][58] ([i915#5274])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
    - bat-dg2-8:          NOTRUN -> [SKIP][59] ([i915#5274])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7 (NEW):
    - bat-adlp-11:        NOTRUN -> [ABORT][60] ([i915#8668])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - fi-kbl-guc:         NOTRUN -> [SKIP][61] ([fdo#109271])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-guc/igt@kms_pipe_crc_basic@suspend-read-crc.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][62] ([i915#9792])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
    - bat-atsm-1:         NOTRUN -> [SKIP][63] ([i915#1836])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
    - bat-dg2-8:          NOTRUN -> [INCOMPLETE][64] ([i915#1982] / [i915#9280])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-dg2-8:          NOTRUN -> [SKIP][65] ([i915#5354])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr_cursor_plane_move:
    - bat-mtlp-8:         NOTRUN -> [SKIP][66] ([i915#9806]) +3 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_psr@psr_cursor_plane_move.html
    - bat-dg2-8:          NOTRUN -> [SKIP][67] ([i915#9673] / [i915#9736]) +3 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_psr@psr_cursor_plane_move.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-mtlp-8:         NOTRUN -> [SKIP][68] ([i915#3555] / [i915#8809])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
    - bat-dg2-8:          NOTRUN -> [SKIP][69] ([i915#3555])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-dg2-8:          NOTRUN -> [SKIP][70] ([i915#3708])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-dg2-8:          NOTRUN -> [SKIP][71] ([i915#3708] / [i915#4077]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][72] ([i915#3708] / [i915#4077]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-fence-read:
    - bat-mtlp-8:         NOTRUN -> [SKIP][73] ([i915#3708]) +2 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-write:
    - bat-dg2-8:          NOTRUN -> [SKIP][74] ([i915#3291] / [i915#3708]) +2 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-bsw-n3050:       [ABORT][75] ([i915#9793]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html
    - fi-cfl-guc:         [ABORT][77] ([i915#8213] / [i915#8668]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
    - bat-mtlp-6:         [ABORT][79] ([i915#8213] / [i915#8668]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html
    - bat-dg2-9:          [ABORT][81] ([i915#8213]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-x1275:       [ABORT][83] ([i915#8213] / [i915#8668] / [i915#9793]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html
    - bat-jsl-1:          [ABORT][85] ([i915#9793]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-jsl-1/igt@core_hotunplug@unbind-rebind.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-1/igt@core_hotunplug@unbind-rebind.html
    - fi-cfl-8700k:       [ABORT][87] ([i915#8213] / [i915#8668]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html
    - fi-blb-e6850:       [ABORT][89] ([i915#9793]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
    - bat-kbl-2:          [ABORT][91] ([i915#9793]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html
    - fi-rkl-11600:       [ABORT][93] ([i915#8213]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
    - fi-skl-6600u:       [ABORT][95] ([i915#8668]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-skl-6600u/igt@core_hotunplug@unbind-rebind.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-6600u/igt@core_hotunplug@unbind-rebind.html
    - bat-adls-5:         [ABORT][97] ([i915#9793]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adls-5/igt@core_hotunplug@unbind-rebind.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-5/igt@core_hotunplug@unbind-rebind.html
    - fi-apl-guc:         [ABORT][99] ([i915#8213] / [i915#8668]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html
    - bat-atsm-1:         [ABORT][101] ([i915#8213]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html
    - bat-dg1-7:          [ABORT][103] ([i915#8213]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html
    - bat-jsl-3:          [ABORT][105] ([i915#9793]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-jsl-3/igt@core_hotunplug@unbind-rebind.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-3/igt@core_hotunplug@unbind-rebind.html
    - fi-glk-j4005:       [ABORT][107] ([i915#8213] / [i915#8668]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html
    - bat-adlp-9:         [ABORT][109] ([i915#8213] / [i915#8668]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-adlp-9/igt@core_hotunplug@unbind-rebind.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-9/igt@core_hotunplug@unbind-rebind.html
    - fi-skl-guc:         [ABORT][111] ([i915#8668]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-skl-guc/igt@core_hotunplug@unbind-rebind.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-guc/igt@core_hotunplug@unbind-rebind.html
    - bat-dg2-11:         [ABORT][113] ([i915#8213]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html
    - fi-cfl-8109u:       [ABORT][115] ([i915#8213] / [i915#8668]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-7567u:       [ABORT][117] ([i915#8668] / [i915#9793]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
    - fi-ivb-3770:        [ABORT][119] ([i915#9793]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-ivb-3770/igt@core_hotunplug@unbind-rebind.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-3770/igt@core_hotunplug@unbind-rebind.html
    - fi-elk-e7500:       [ABORT][121] ([i915#9793]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html
    - fi-bsw-nick:        [ABORT][123] ([i915#9793]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-guc:         [ABORT][125] ([i915#8668] / [i915#9793]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-kbl-guc/igt@core_hotunplug@unbind-rebind.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-guc/igt@core_hotunplug@unbind-rebind.html
    - fi-ilk-650:         [ABORT][127] ([i915#9793]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-ilk-650/igt@core_hotunplug@unbind-rebind.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ilk-650/igt@core_hotunplug@unbind-rebind.html
    - fi-tgl-1115g4:      [ABORT][129] ([i915#8213]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
  [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
  [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
  [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
  [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
  [i915#9280]: https://gitlab.freedesktop.org/drm/intel/issues/9280
  [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
  [i915#9792]: https://gitlab.freedesktop.org/drm/intel/issues/9792
  [i915#9793]: https://gitlab.freedesktop.org/drm/intel/issues/9793
  [i915#9806]: https://gitlab.freedesktop.org/drm/intel/issues/9806


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

  * Linux: CI_DRM_13983 -> Patchwork_127359v2

  CI-20190529: 20190529
  CI_DRM_13983: a9d99261a978835b02e248fe18af3026416af3e8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_7622: 48a47d91b7727215b965690c69d84159c8fb1aa2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_127359v2: a9d99261a978835b02e248fe18af3026416af3e8 @ git://anongit.freedesktop.org/gfx-ci/linux


### Linux commits

958303ae297c Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"

== Logs ==

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

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
  2023-12-06 19:34   ` Saarinen, Jani
@ 2023-12-07  9:20     ` Illipilli, TejasreeX
  0 siblings, 0 replies; 11+ messages in thread
From: Illipilli, TejasreeX @ 2023-12-07  9:20 UTC (permalink / raw)
  To: Saarinen, Jani, intel-gfx, Borah, Chaitanya Kumar, LGCI Bug Filing

Hi, 

https://patchwork.freedesktop.org/series/127359/ - Re-reported

Thanks,
Tejasree

-----Original Message-----
From: Saarinen, Jani <jani.saarinen@intel.com> 
Sent: Thursday, December 7, 2023 1:04 AM
To: intel-gfx@lists.freedesktop.org; Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; LGCI Bug Filing <lgci.bug.filing@intel.com>
Subject: RE: [Intel-gfx] ✗ Fi.CI.BAT: failure for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)

Hi. 

> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of 
> Patchwork
> Sent: Wednesday, December 6, 2023 9:58 AM
> To: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>
> Cc: intel-gfx@lists.freedesktop.org
> Subject: [Intel-gfx] ✗ Fi.CI.BAT: failure for Revert "debugfs: 
> annotate debugfs handlers vs. removal with lockdep" (rev2)
> 
> Patch Details
> Series:	Revert "debugfs: annotate debugfs handlers vs. removal with lockdep"
> (rev2)
> URL:	https://patchwork.freedesktop.org/series/127359/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/index.html
> 
> 
> CI Bug Log - changes from CI_DRM_13983 -> Patchwork_127359v2
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with Patchwork_127359v2 absolutely need 
> to be verified manually.
> 
> If you think the reported changes have nothing to do with the changes 
> introduced in Patchwork_127359v2, 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/Patchwork_127359v2/index.html
> 
> 
> Participating hosts (35 -> 36)
> 
> 
> Additional (2): bat-dg2-8 bat-mtlp-8
> Missing (1): fi-snb-2520m
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in
> Patchwork_127359v2:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@kms_pipe_crc_basic@suspend-read-crc:
> 
> 	*	bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@kms_pipe_crc_basic@suspend-read-crc.html>
> 
> *	igt@kms_psr@psr_cursor_plane_move:
Has been always skipping: https://intel-gfx-ci.01.org/tree/drm-tip/bat-all.html?testfilter=suspend-read-crc&hosts=mtlp-6 
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_psr@psr_cursor_plane_move.html>  +3 other tests skip
Has been always skipping: https://intel-gfx-ci.01.org/tree/drm-tip/bat-all.html?testfilter=psr_cursor_plane_move&hosts=mtlp-8 

No issues caused by patch. Bug-filing team, please report

> 
> 
> New tests
> 
> 
> New tests have been introduced between CI_DRM_13983 and
> Patchwork_127359v2:
> 
> 
> New IGT tests (12)
> 
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-
> 7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-
> 7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-
> 7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7:
> 
> 	*	Statuses : 1 abort(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc@pipe-c-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> *	igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-7:
> 
> 	*	Statuses : 1 pass(s)
> 	*	Exec time: [0.0] s
> 
> 
> Known issues
> 
> 
> Here are the changes found in Patchwork_127359v2 that come from known
> issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@debugfs_test@basic-hwmon:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@debugfs_test@basic-hwmon.html>  (i915#9318 
> <https://gitlab.freedesktop.org/drm/intel/issues/9318> )
> 
> *	igt@gem_lmem_swapping@basic:
> 
> 	*	fi-apl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-apl-guc/igt@gem_lmem_swapping@basic.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 
> other tests skip
> 
> 	*	bat-jsl-3: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-jsl-3/igt@gem_lmem_swapping@basic.html>
> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 
> other tests skip
> 
> 	*	fi-glk-j4005: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-
> j4005/igt@gem_lmem_swapping@basic.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	bat-adlp-9: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-
> 9/igt@gem_lmem_swapping@basic.html>  (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-skl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-skl-guc/igt@gem_lmem_swapping@basic.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 
> other tests skip
> 
> 	*	fi-kbl-7567u: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> 7567u/igt@gem_lmem_swapping@basic.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-cfl-8700k: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8700k/igt@gem_lmem_swapping@basic.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-elk-e7500: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-
> e7500/igt@gem_lmem_swapping@basic.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests 
> skip
> 
> *	igt@gem_lmem_swapping@parallel-random-engines:
> 
> 	*	fi-bsw-nick: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> nick/igt@gem_lmem_swapping@parallel-random-engines.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +3 other tests 
> skip
> 
> 	*	bat-kbl-2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-kbl-2/igt@gem_lmem_swapping@parallel-
> random-engines.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests 
> skip
> 
> 	*	fi-rkl-11600: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-
> 11600/igt@gem_lmem_swapping@parallel-random-engines.html>  (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-
> 1115g4/igt@gem_lmem_swapping@parallel-random-engines.html>  (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> *	igt@gem_lmem_swapping@random-engines:
> 
> 	*	fi-bsw-n3050: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> n3050/igt@gem_lmem_swapping@random-engines.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +3 other tests 
> skip
> 
> 	*	fi-skl-6600u: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-
> 6600u/igt@gem_lmem_swapping@random-engines.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	bat-adls-5: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-
> 5/igt@gem_lmem_swapping@random-engines.html>  (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> *	igt@gem_lmem_swapping@verify-random:
> 
> 	*	fi-cfl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-cfl-guc/igt@gem_lmem_swapping@verify-
> random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@gem_lmem_swapping@verify-random.html>  (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-kbl-x1275: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> x1275/igt@gem_lmem_swapping@verify-random.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-cfl-8109u: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8109u/igt@gem_lmem_swapping@verify-random.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-ivb-3770: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-
> 3770/igt@gem_lmem_swapping@verify-random.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests 
> skip
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_lmem_swapping@verify-random.html>  (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-kbl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-kbl-guc/igt@gem_lmem_swapping@verify-
> random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> 	*	fi-ilk-650: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-ilk-650/igt@gem_lmem_swapping@verify-
> random.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests 
> skip
> 
> 	*	bat-jsl-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-jsl-1/igt@gem_lmem_swapping@verify-
> random.html>  (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613> ) +3 other 
> tests skip
> 
> *	igt@gem_mmap@basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_mmap@basic.html>  (i915#4083 
> <https://gitlab.freedesktop.org/drm/intel/issues/4083> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@gem_mmap@basic.html>  (i915#4083 
> <https://gitlab.freedesktop.org/drm/intel/issues/4083> )
> 
> *	igt@gem_mmap_gtt@basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_mmap_gtt@basic.html>  (i915#4077 
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +2 other 
> tests skip
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@gem_mmap_gtt@basic.html>  (i915#4077 
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +2 other 
> tests skip
> 
> *	igt@gem_render_tiled_blits@basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@gem_render_tiled_blits@basic.html>  (i915#4079 
> <https://gitlab.freedesktop.org/drm/intel/issues/4079> ) +1 other test 
> skip
> 
> *	igt@gem_tiled_pread_basic:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@gem_tiled_pread_basic.html>  (i915#4079 
> <https://gitlab.freedesktop.org/drm/intel/issues/4079> ) +1 other test 
> skip
> 
> *	igt@i915_pm_rpm@module-reload:
> 
> 	*	fi-blb-e6850: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-
> e6850/igt@i915_pm_rpm@module-reload.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +4 other tests 
> skip
> 
> *	igt@i915_pm_rps@basic-api:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@i915_pm_rps@basic-api.html>  (i915#6621 
> <https://gitlab.freedesktop.org/drm/intel/issues/6621> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@i915_pm_rps@ba
> sic- api.html>  (i915#6621 
> <https://gitlab.freedesktop.org/drm/intel/issues/6621> )
> 
> *	igt@i915_selftest@live@gt_heartbeat:
> 
> 	*	fi-apl-guc: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-
> guc/igt@i915_selftest@live@gt_heartbeat.html>  (i915#5334 
> <https://gitlab.freedesktop.org/drm/intel/issues/5334> )
> 
> *	igt@i915_selftest@live@hangcheck:
> 
> 	*	bat-adls-5: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-
> 5/igt@i915_selftest@live@hangcheck.html>  (i915#5591 
> <https://gitlab.freedesktop.org/drm/intel/issues/5591> )
> 
> *	igt@i915_suspend@basic-s3-without-i915:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-
> 1115g4/igt@i915_suspend@basic-s3-without-i915.html>  (i915#7443 
> <https://gitlab.freedesktop.org/drm/intel/issues/7443> )
> 
> 	*	bat-atsm-1: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-
> 1/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645 
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> 	*	bat-mtlp-6: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645 
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> 	*	fi-kbl-x1275: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> x1275/igt@i915_suspend@basic-s3-without-i915.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +1 other test 
> skip
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645 
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@i915_suspend@basic-s3-without-i915.html>  (i915#6645 
> <https://gitlab.freedesktop.org/drm/intel/issues/6645> )
> 
> *	igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html>  (i915#5190 
> <https://gitlab.freedesktop.org/drm/intel/issues/5190> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html>  (i915#5190 
> <https://gitlab.freedesktop.org/drm/intel/issues/5190> )
> 
> *	igt@kms_addfb_basic@basic-y-tiled-legacy:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_addfb_basic@basic-y-tiled-legacy.html>  (i915#4212 
> <https://gitlab.freedesktop.org/drm/intel/issues/4212> ) +8 other 
> tests skip
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@basic-y-tiled-legacy.html>  (i915#4215 
> <https://gitlab.freedesktop.org/drm/intel/issues/4215>  / i915#5190 
> <https://gitlab.freedesktop.org/drm/intel/issues/5190> )
> 
> *	igt@kms_addfb_basic@framebuffer-vs-set-tiling:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html>  (i915#4212 
> <https://gitlab.freedesktop.org/drm/intel/issues/4212> ) +6 other 
> tests skip
> 
> *	igt@kms_addfb_basic@tile-pitch-mismatch:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_addfb_basic@tile-pitch-mismatch.html>  (i915#4212 
> <https://gitlab.freedesktop.org/drm/intel/issues/4212>  / i915#5608 
> <https://gitlab.freedesktop.org/drm/intel/issues/5608> )
> 
> *	igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213> ) +1 
> other test skip
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>  / 
> i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213>  / 
> i915#5608 <https://gitlab.freedesktop.org/drm/intel/issues/5608> ) +1 
> other test skip
> 
> *	igt@kms_dsc@dsc-basic:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-8/igt@kms_dsc@dsc-
> basic.html>  (i915#3555 
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>
> / i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840>  / 
> i915#9159 <https://gitlab.freedesktop.org/drm/intel/issues/9159> )
> 
> *	igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6:
> 
> 	*	bat-adlp-11: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-
> dp6.html>  -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblan
> k@a- dp6.html>  (i915#6868 
> <https://gitlab.freedesktop.org/drm/intel/issues/6868> )
> 
> *	igt@kms_flip@basic-flip-vs-wf_vblank@c-dp6:
> 
> 	*	bat-adlp-11: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@c-
> dp6.html>  -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblan
> k@c- dp6.html>  (i915#6121 
> <https://gitlab.freedesktop.org/drm/intel/issues/6121> )
> +2 other tests fail
> 
> *	igt@kms_force_connector_basic@force-load-detect:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_force_connector_basic@force-load-detect.html>  (fdo#109285 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_force_connector_basic@force-load-detect.html>  (fdo#109285 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> )
> 
> *	igt@kms_force_connector_basic@prune-stale-modes:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_force_connector_basic@prune-stale-modes.html>  (i915#5274 
> <https://gitlab.freedesktop.org/drm/intel/issues/5274> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_force_connector_basic@prune-stale-modes.html>  (i915#5274 
> <https://gitlab.freedesktop.org/drm/intel/issues/5274> )
> 
> *	igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7
> (NEW):
> 
> 	*	bat-adlp-11: NOTRUN -> ABORT <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-
> 11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-7.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> )
> 
> *	igt@kms_pipe_crc_basic@suspend-read-crc:
> 
> 	*	fi-kbl-guc: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/Patchwork_127359v2/fi-kbl-guc/igt@kms_pipe_crc_basic@suspend-read-
> crc.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> )
> 
> 	*	bat-atsm-1: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-
> 1/igt@kms_pipe_crc_basic@suspend-read-crc.html>  (i915#1836 
> <https://gitlab.freedesktop.org/drm/intel/issues/1836> )
> 
> *	igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
> 
> 	*	bat-dg2-8: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html>  
> (i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>  / 
> i915#9280 <https://gitlab.freedesktop.org/drm/intel/issues/9280> )
> 
> *	igt@kms_pm_backlight@basic-brightness:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_pm_backlight@basic-brightness.html>  (i915#5354 
> <https://gitlab.freedesktop.org/drm/intel/issues/5354> )
> 
> *	igt@kms_psr@psr_cursor_plane_move:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_psr@psr_cursor_plane_move.html>  (i915#9673 
> <https://gitlab.freedesktop.org/drm/intel/issues/9673>  / i915#9736 
> <https://gitlab.freedesktop.org/drm/intel/issues/9736> ) +3 other 
> tests skip
> 
> *	igt@kms_setmode@basic-clone-single-crtc:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@kms_setmode@basic-clone-single-crtc.html>  (i915#3555 
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>  / i915#8809 
> <https://gitlab.freedesktop.org/drm/intel/issues/8809> )
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 8/igt@kms_setmode@basic-clone-single-crtc.html>  (i915#3555 
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> )
> 
> *	igt@prime_vgem@basic-fence-flip:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@bas
> ic-
> fence-flip.html>  (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708> )
> 
> *	igt@prime_vgem@basic-fence-mmap:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@bas
> ic-
> fence-mmap.html>  (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708>  / i915#4077 
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +1 other test 
> skip
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@prime_vgem@basic-fence-mmap.html>  (i915#3708 
> <https://gitlab.freedesktop.org/drm/intel/issues/3708>  / i915#4077 
> <https://gitlab.freedesktop.org/drm/intel/issues/4077> ) +1 other test 
> skip
> 
> *	igt@prime_vgem@basic-fence-read:
> 
> 	*	bat-mtlp-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 8/igt@prime_vgem@basic-fence-read.html>  (i915#3708 
> <https://gitlab.freedesktop.org/drm/intel/issues/3708> ) +2 other 
> tests skip
> 
> *	igt@prime_vgem@basic-write:
> 
> 	*	bat-dg2-8: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-8/igt@prime_vgem@bas
> ic- write.html>  (i915#3291 
> <https://gitlab.freedesktop.org/drm/intel/issues/3291>
> / i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708> ) 
> +2 other tests skip
> 
> 
> Possible fixes
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-bsw-n3050: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> n3050/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-cfl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-mtlp-6: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-mtlp-
> 6/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-dg2-9: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 9/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-kbl-x1275: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>  / 
> i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> x1275/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-jsl-1: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-jsl-1/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-
> 1/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-cfl-8700k: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8700k/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-blb-e6850: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-blb-
> e6850/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-kbl-2: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-kbl-
> 2/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-rkl-11600: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-rkl-
> 11600/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-skl-6600u: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-skl-6600u/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-
> 6600u/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-adls-5: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adls-5/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adls-
> 5/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-apl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-apl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-atsm-1: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-atsm-
> 1/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-dg1-7: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-dg1-7/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg1-
> 7/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-jsl-3: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-jsl-3/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-jsl-
> 3/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-glk-j4005: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-glk-
> j4005/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-adlp-9: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-adlp-9/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-adlp-
> 9/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-skl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-skl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-skl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	bat-dg2-11: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/bat-dg2-11/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/bat-dg2-
> 11/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-cfl-8109u: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213>  / 
> i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-cfl-
> 8109u/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-kbl-7567u: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>  / 
> i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> 7567u/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-ivb-3770: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-ivb-3770/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ivb-
> 3770/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-elk-e7500: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-elk-
> e7500/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-bsw-nick: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-bsw-
> nick/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-kbl-guc: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-kbl-guc/igt@core_hotunplug@unbind-rebind.html>
> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>  / 
> i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS <https://intel-
> gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-kbl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-ilk-650: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-ilk-650/igt@core_hotunplug@unbind-rebind.html>
> (i915#9793 <https://gitlab.freedesktop.org/drm/intel/issues/9793> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-ilk-
> 650/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-tgl-1115g4: ABORT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_13983/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html>
> (i915#8213 <https://gitlab.freedesktop.org/drm/intel/issues/8213> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/fi-tgl-
> 1115g4/igt@core_hotunplug@unbind-rebind.html>
> 
> {name}: This element is suppressed. This means it is ignored when 
> computing the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
> Build changes
> 
> 
> *	Linux: CI_DRM_13983 -> Patchwork_127359v2
> 
> CI-20190529: 20190529
> CI_DRM_13983: a9d99261a978835b02e248fe18af3026416af3e8 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_7622: 48a47d91b7727215b965690c69d84159c8fb1aa2 @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_127359v2: a9d99261a978835b02e248fe18af3026416af3e8 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> 
> 
> Linux commits
> 
> 
> 958303ae297c Revert "debugfs: annotate debugfs handlers vs. removal 
> with lockdep"


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

* ✗ Fi.CI.IGT: failure for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
  2023-12-06  6:47 [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Chaitanya Kumar Borah
                   ` (3 preceding siblings ...)
  2023-12-07  9:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
@ 2023-12-07 11:10 ` Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-07 11:10 UTC (permalink / raw)
  To: Chaitanya Kumar Borah; +Cc: intel-gfx

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

== Series Details ==

Series: Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2)
URL   : https://patchwork.freedesktop.org/series/127359/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13983_full -> Patchwork_127359v2_full
====================================================

Summary
-------

  **FAILURE**

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

  Missing    (1): shard-glk-0 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg1:          NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2:          NOTRUN -> [SKIP][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-tglu:         NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html

  
#### Warnings ####

  * igt@kms_content_protection@type1:
    - shard-snb:          [SKIP][4] ([fdo#109271]) -> [INCOMPLETE][5] +1 other test incomplete
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-snb5/igt@kms_content_protection@type1.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-snb7/igt@kms_content_protection@type1.html

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

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

### CI changes ###

#### Possible fixes ####

  * boot:
    - shard-glk:          ([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], [FAIL][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30]) ([i915#8293]) -> ([PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk3/boot.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk2/boot.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk2/boot.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk2/boot.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk2/boot.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk1/boot.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk9/boot.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk9/boot.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk9/boot.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk8/boot.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk8/boot.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk8/boot.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk8/boot.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk6/boot.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk6/boot.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk5/boot.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk5/boot.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk5/boot.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk5/boot.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk4/boot.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk4/boot.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk4/boot.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk3/boot.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk3/boot.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk3/boot.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk1/boot.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk1/boot.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk2/boot.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk2/boot.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk2/boot.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk3/boot.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk3/boot.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk3/boot.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk4/boot.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk4/boot.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk4/boot.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk5/boot.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk5/boot.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk5/boot.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk6/boot.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk6/boot.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk6/boot.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk7/boot.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk7/boot.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk7/boot.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk8/boot.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk8/boot.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk9/boot.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk9/boot.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk9/boot.html

  

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#8411]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#8411]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@api_intel_bb@crc32:
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#6230])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@api_intel_bb@crc32.html

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#8411])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@api_intel_bb@render-ccs:
    - shard-dg2:          NOTRUN -> [FAIL][60] ([i915#6122])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@api_intel_bb@render-ccs.html

  * igt@debugfs_test@basic-hwmon:
    - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#9318])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@debugfs_test@basic-hwmon.html
    - shard-rkl:          NOTRUN -> [SKIP][62] ([i915#9318])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@debugfs_test@basic-hwmon.html
    - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#9318])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@debugfs_test@basic-hwmon.html

  * igt@device_reset@cold-reset-bound:
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#7701])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@device_reset@cold-reset-bound.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-dg1:          NOTRUN -> [SKIP][65] ([i915#7701])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@device_reset@unbind-cold-reset-rebind.html
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#7701])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_fdinfo@busy-check-all@bcs0:
    - shard-dg1:          NOTRUN -> [SKIP][67] ([i915#8414]) +24 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html

  * igt@drm_fdinfo@busy-hang@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][68] ([i915#8414]) +10 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html

  * igt@drm_fdinfo@busy-idle@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#8414]) +33 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html

  * igt@drm_fdinfo@idle@rcs0:
    - shard-rkl:          NOTRUN -> [FAIL][70] ([i915#7742])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - shard-rkl:          [PASS][71] -> [FAIL][72] ([i915#7742])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#3936])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-6/igt@gem_busy@semaphore.html
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#3936])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_busy@semaphore.html
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#3936])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gem_busy@semaphore.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][76] ([i915#9323])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#9323]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#6335])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-big.html
    - shard-rkl:          NOTRUN -> [SKIP][79] ([i915#6335])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#8562])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@gem_create@create-ext-set-pat.html
    - shard-rkl:          NOTRUN -> [SKIP][81] ([i915#8562])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
    - shard-dg1:          NOTRUN -> [SKIP][82] ([i915#8562])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_create@create-ext-set-pat.html
    - shard-tglu:         NOTRUN -> [SKIP][83] ([i915#8562])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@hang:
    - shard-mtlp:         NOTRUN -> [SKIP][84] ([i915#8555]) +3 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_ctx_persistence@hang.html

  * igt@gem_ctx_persistence@heartbeat-hostile:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#8555]) +5 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hostile.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#8555]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_persistence@processes:
    - shard-snb:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#1099]) +2 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-snb2/igt@gem_ctx_persistence@processes.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#5882]) +9 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html

  * igt@gem_ctx_sseu@engines:
    - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#280])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@gem_ctx_sseu@engines.html
    - shard-tglu:         NOTRUN -> [SKIP][90] ([i915#280])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@gem_ctx_sseu@engines.html
    - shard-mtlp:         NOTRUN -> [SKIP][91] ([i915#280])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gem_ctx_sseu@engines.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg1:          NOTRUN -> [SKIP][92] ([i915#280]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg2:          NOTRUN -> [SKIP][93] ([i915#280]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@reset-stress:
    - shard-dg2:          NOTRUN -> [FAIL][94] ([i915#5784])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@gem_eio@reset-stress.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          NOTRUN -> [FAIL][95] ([i915#5784])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#4771]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html
    - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#4771]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_exec_balancer@bonded-sync.html
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#4771])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#4812]) +3 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#4036])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-rkl:          NOTRUN -> [SKIP][101] ([i915#4525]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#6334]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#6334]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_capture@many-4k-incremental:
    - shard-mtlp:         NOTRUN -> [FAIL][104] ([i915#9606])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_exec_capture@many-4k-incremental.html

  * igt@gem_exec_fair@basic-none:
    - shard-dg1:          NOTRUN -> [SKIP][105] ([i915#3539] / [i915#4852]) +7 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_exec_fair@basic-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#4473] / [i915#4771]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gem_exec_fair@basic-none.html

  * igt@gem_exec_fair@basic-none@bcs0:
    - shard-rkl:          NOTRUN -> [FAIL][107] ([i915#2842]) +5 other tests fail
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-tglu:         NOTRUN -> [FAIL][108] ([i915#2842]) +6 other tests fail
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-pace-share:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#3539] / [i915#4852]) +8 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@gem_exec_fair@basic-pace-share.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][110] -> [FAIL][111] ([i915#2842])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#3539]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@gem_exec_fair@basic-pace-solo.html
    - shard-mtlp:         NOTRUN -> [SKIP][113] ([i915#4473])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-rkl:          [PASS][114] -> [FAIL][115] ([i915#2842]) +3 other tests fail
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-throttle:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#3539]) +2 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][117] ([i915#2842]) +4 other tests fail
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_fence@submit67:
    - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#4812]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#3711])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_params@secure-non-master:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([fdo#112283])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gem_exec_params@secure-non-master.html
    - shard-dg1:          NOTRUN -> [SKIP][121] ([fdo#112283]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-active:
    - shard-dg2:          NOTRUN -> [SKIP][122] ([i915#3281]) +31 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gem_exec_reloc@basic-active.html

  * igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#3281]) +15 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-gtt-read-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][124] ([i915#3281]) +14 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-noreloc.html

  * igt@gem_exec_reloc@basic-write-gtt-active:
    - shard-dg1:          NOTRUN -> [SKIP][125] ([i915#3281]) +22 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-15/igt@gem_exec_reloc@basic-write-gtt-active.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#4537] / [i915#4812]) +2 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
    - shard-dg2:          NOTRUN -> [SKIP][127] ([i915#4537] / [i915#4812]) +2 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-rkl:          NOTRUN -> [SKIP][128] ([i915#7276])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
    - shard-dg1:          NOTRUN -> [SKIP][129] ([i915#4812]) +5 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][130] ([i915#9275])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@gem_fence_thrash@bo-write-verify-threaded-none:
    - shard-dg1:          NOTRUN -> [SKIP][131] ([i915#4860]) +3 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][132] ([i915#4860]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html

  * igt@gem_fenced_exec_thrash@2-spare-fences:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#4860]) +3 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          NOTRUN -> [SKIP][134] ([i915#4613] / [i915#7582])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#4613] / [i915#7582])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#4613]) +5 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#4613]) +5 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-glk:          NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#4613]) +5 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk5/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][139] ([i915#4565])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs@lmem0.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][140] ([i915#4613]) +5 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_media_fill@media-fill:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#8289])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@gem_media_fill@media-fill.html

  * igt@gem_media_vme:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#284])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_media_vme.html
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#284])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@gem_media_vme.html
    - shard-rkl:          NOTRUN -> [SKIP][144] ([i915#284])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_media_vme.html
    - shard-dg1:          NOTRUN -> [SKIP][145] ([i915#284])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_media_vme.html
    - shard-tglu:         NOTRUN -> [SKIP][146] ([i915#284])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@gem_media_vme.html

  * igt@gem_mmap_gtt@basic-small-bo:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#4077]) +24 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html

  * igt@gem_mmap_gtt@fault-concurrent-y:
    - shard-mtlp:         NOTRUN -> [SKIP][148] ([i915#4077]) +20 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-1/igt@gem_mmap_gtt@fault-concurrent-y.html

  * igt@gem_mmap_wc@invalid-flags:
    - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#4083]) +12 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html

  * igt@gem_mmap_wc@read-write:
    - shard-mtlp:         NOTRUN -> [SKIP][150] ([i915#4083]) +10 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@gem_mmap_wc@read-write.html

  * igt@gem_mmap_wc@write-read:
    - shard-dg1:          NOTRUN -> [SKIP][151] ([i915#4083]) +8 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-15/igt@gem_mmap_wc@write-read.html

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#3282]) +14 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#3282]) +9 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_pread@exhaustion:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#3282]) +11 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@gem_pread@exhaustion.html

  * igt@gem_pxp@display-protected-crc:
    - shard-dg2:          NOTRUN -> [SKIP][155] ([i915#4270]) +7 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#4270]) +3 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
    - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#4270])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-mtlp:         NOTRUN -> [SKIP][158] ([i915#4270]) +4 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@gem_pxp@verify-pxp-stale-ctx-execution:
    - shard-dg1:          NOTRUN -> [SKIP][159] ([i915#4270]) +7 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-19/igt@gem_pxp@verify-pxp-stale-ctx-execution.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3282]) +6 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][161] ([i915#8428]) +8 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#4079]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
    - shard-rkl:          NOTRUN -> [SKIP][163] ([i915#8411]) +1 other test skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-dg1:          NOTRUN -> [SKIP][164] ([i915#4079]) +3 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][165] ([i915#4885])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_softpin@evict-snoop.html

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#4077]) +26 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_tiled_pread_basic:
    - shard-mtlp:         NOTRUN -> [SKIP][167] ([i915#4079]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_tiled_pread_basic.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#3297]) +9 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate:
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#3297] / [i915#4880]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#3297] / [i915#4880])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][171] ([i915#3297]) +2 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-mtlp:         NOTRUN -> [SKIP][172] ([i915#3297]) +6 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#3297] / [i915#4958])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html
    - shard-dg1:          NOTRUN -> [SKIP][174] ([i915#3297] / [i915#4958])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#3297]) +2 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html
    - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#3297]) +7 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> [SKIP][177] ([fdo#109289]) +7 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([fdo#109289]) +9 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([fdo#109289]) +6 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html

  * igt@gen7_exec_parse@load-register-reg:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([fdo#109289]) +7 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@gen7_exec_parse@load-register-reg.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-mtlp:         NOTRUN -> [SKIP][181] ([i915#2856]) +4 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-snb:          NOTRUN -> [SKIP][182] ([fdo#109271]) +388 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-snb2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
    - shard-tglu:         NOTRUN -> [SKIP][183] ([i915#2527] / [i915#2856]) +2 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#2527]) +3 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-dg1:          NOTRUN -> [SKIP][185] ([i915#2527]) +3 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#2856]) +5 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-mtlp:         NOTRUN -> [ABORT][187] ([i915#9820])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_module_load@resize-bar:
    - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#7178])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][189] ([i915#8399]) +1 other test skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#6621])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@i915_pm_rps@basic-api.html
    - shard-mtlp:         NOTRUN -> [SKIP][191] ([i915#6621])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@i915_pm_rps@basic-api.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([i915#6621]) +1 other test skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_pm_rps@thresholds-park@gt0:
    - shard-dg1:          NOTRUN -> [SKIP][193] ([i915#8925]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@i915_pm_rps@thresholds-park@gt0.html

  * igt@i915_pm_rps@thresholds@gt0:
    - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#8925])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-7/igt@i915_pm_rps@thresholds@gt0.html

  * igt@i915_pm_sseu@full-enable:
    - shard-dg2:          NOTRUN -> [SKIP][195] ([i915#4387])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
    - shard-dg1:          NOTRUN -> [SKIP][196] ([i915#4387])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-mtlp:         NOTRUN -> [SKIP][197] ([i915#6188])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@i915_query@query-topology-coherent-slice-mask.html
    - shard-dg2:          NOTRUN -> [SKIP][198] ([i915#6188])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#4212]) +2 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][200] ([i915#4212]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][201] ([i915#4212])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][202] ([i915#4215] / [i915#5190])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#8709]) +3 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#8709]) +7 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html

  * igt@kms_async_flips@crc@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [FAIL][205] ([i915#8247]) +3 other tests fail
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-7/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html

  * igt@kms_async_flips@test-cursor:
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([i915#6229])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-mtlp:         NOTRUN -> [SKIP][207] ([i915#3555])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg2:          NOTRUN -> [SKIP][208] ([i915#9531])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-rkl:          NOTRUN -> [SKIP][209] ([i915#9531])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg1:          NOTRUN -> [SKIP][210] ([i915#9531])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-tglu:         NOTRUN -> [SKIP][211] ([i915#9531])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-mtlp:         NOTRUN -> [SKIP][212] ([i915#1769] / [i915#3555])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#1769] / [i915#3555])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [PASS][214] -> [FAIL][215] ([i915#5138])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-dg1:          NOTRUN -> [SKIP][216] ([i915#5286]) +1 other test skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
    - shard-tglu:         NOTRUN -> [SKIP][217] ([i915#5286])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][218] ([fdo#111615] / [i915#5286]) +8 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#5286]) +11 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][220] ([i915#4538] / [i915#5286]) +11 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-tglu:         NOTRUN -> [SKIP][221] ([fdo#111614]) +4 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][222] ([fdo#111614]) +10 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-rkl:          NOTRUN -> [SKIP][223] ([fdo#111614] / [i915#3638]) +5 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-mtlp:         NOTRUN -> [SKIP][224] ([fdo#111614]) +5 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         NOTRUN -> [FAIL][225] ([i915#3743])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][226] ([i915#3638]) +8 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#5190]) +29 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#4538] / [i915#5190]) +9 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
    - shard-rkl:          NOTRUN -> [SKIP][229] ([fdo#110723]) +5 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][230] ([i915#4538]) +9 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-rkl:          NOTRUN -> [SKIP][231] ([fdo#111615]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg1:          NOTRUN -> [SKIP][232] ([fdo#111615]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#6187]) +3 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][234] ([fdo#111615]) +7 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         NOTRUN -> [SKIP][235] ([fdo#111615]) +13 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_joiner@basic:
    - shard-dg2:          NOTRUN -> [SKIP][236] ([i915#2705]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_big_joiner@basic.html
    - shard-rkl:          NOTRUN -> [SKIP][237] ([i915#2705])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_big_joiner@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][238] ([i915#2705])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@kms_big_joiner@basic.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#2705])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][240] ([i915#5354] / [i915#6095]) +104 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][241] ([i915#5354]) +187 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][242] ([i915#5354] / [i915#6095]) +35 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-mc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][243] ([i915#5354] / [i915#6095]) +55 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-4/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][244] ([i915#5354] / [i915#6095]) +69 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs.html

  * igt@kms_ccs@pipe-d-crc-primary-basic-yf-tiled-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][245] ([i915#5354]) +42 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-basic-yf-tiled-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#3742])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_cdclk@mode-transition.html
    - shard-dg1:          NOTRUN -> [SKIP][247] ([i915#3742])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_cdclk@mode-transition.html
    - shard-tglu:         NOTRUN -> [SKIP][248] ([i915#3742])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#4087] / [i915#7213]) +3 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#7213] / [i915#9010]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#4087]) +3 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html

  * igt@kms_chamelium_audio@dp-audio-edid:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#7828]) +24 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-dg1:          NOTRUN -> [SKIP][253] ([i915#7828]) +24 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([fdo#111827]) +4 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_chamelium_color@ctm-0-25.html
    - shard-tglu:         NOTRUN -> [SKIP][255] ([fdo#111827]) +2 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][256] ([fdo#111827]) +4 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          NOTRUN -> [SKIP][257] ([fdo#111827]) +6 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@kms_chamelium_color@degamma.html
    - shard-dg1:          NOTRUN -> [SKIP][258] ([fdo#111827]) +4 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-13/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][259] ([i915#7828]) +10 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-rkl:          NOTRUN -> [SKIP][260] ([i915#7828]) +12 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][261] ([i915#7828]) +14 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_content_protection@atomic:
    - shard-dg1:          NOTRUN -> [SKIP][262] ([i915#7116]) +4 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#6944] / [i915#7116] / [i915#7118]) +2 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-mtlp:         NOTRUN -> [SKIP][264] ([i915#3299])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@lic:
    - shard-mtlp:         NOTRUN -> [SKIP][265] ([i915#6944]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@lic@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][266] ([i915#7173])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg2:          NOTRUN -> [SKIP][267] ([i915#9424])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_content_protection@mei-interface.html
    - shard-rkl:          NOTRUN -> [SKIP][268] ([i915#9424])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@kms_content_protection@mei-interface.html
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#9424])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_content_protection@mei-interface.html
    - shard-mtlp:         NOTRUN -> [SKIP][270] ([i915#8063] / [i915#9433])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          NOTRUN -> [SKIP][271] ([i915#7118]) +2 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-rkl:          NOTRUN -> [SKIP][272] ([i915#7118]) +3 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][273] ([fdo#109279] / [i915#3359])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-mtlp:         NOTRUN -> [SKIP][274] ([i915#3359]) +2 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][275] ([fdo#109279] / [i915#3359]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][276] ([i915#3359]) +3 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8814])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#3555]) +18 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg1:          NOTRUN -> [SKIP][279] ([i915#3359]) +4 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][280] ([fdo#109274] / [i915#5354]) +14 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][281] ([i915#9809]) +7 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][282] ([i915#4213]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg2:          NOTRUN -> [SKIP][283] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][284] ([i915#4103]) +2 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][285] ([i915#4103] / [i915#4213]) +1 other test skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - shard-tglu:         NOTRUN -> [SKIP][286] ([i915#4103]) +1 other test skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][287] ([fdo#111825]) +16 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-snb:          [PASS][288] -> [SKIP][289] ([fdo#109271]) +8 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-tglu:         NOTRUN -> [SKIP][290] ([fdo#109274]) +6 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][291] ([fdo#111767] / [fdo#111825])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-dg1:          NOTRUN -> [SKIP][292] ([fdo#111767] / [fdo#111825]) +1 other test skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-snb:          NOTRUN -> [SKIP][293] ([fdo#109271] / [fdo#111767])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-tglu:         NOTRUN -> [SKIP][294] ([fdo#109274] / [fdo#111767])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-mtlp:         NOTRUN -> [SKIP][295] ([fdo#111767])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
    - shard-dg2:          NOTRUN -> [SKIP][296] ([fdo#109274] / [fdo#111767] / [i915#5354])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-mtlp:         NOTRUN -> [SKIP][297] ([i915#9067])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
    - shard-rkl:          NOTRUN -> [SKIP][298] ([i915#9067])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
    - shard-tglu:         NOTRUN -> [SKIP][299] ([i915#9067])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][300] ([i915#4103] / [i915#4213])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][301] ([i915#9723])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-dg1:          NOTRUN -> [SKIP][302] ([i915#9723])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-tglu:         NOTRUN -> [SKIP][303] ([i915#9723])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_aux_dev:
    - shard-dg1:          NOTRUN -> [SKIP][304] ([i915#1257])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_dp_aux_dev.html
    - shard-tglu:         NOTRUN -> [SKIP][305] ([i915#1257])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-5/igt@kms_dp_aux_dev.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#8812]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][307] ([i915#8812])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-tglu:         NOTRUN -> [SKIP][308] ([i915#3555] / [i915#3840]) +1 other test skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-7/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][309] ([i915#3555] / [i915#3840]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html
    - shard-dg2:          NOTRUN -> [SKIP][310] ([i915#3555] / [i915#3840]) +2 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html
    - shard-rkl:          NOTRUN -> [SKIP][311] ([i915#3555] / [i915#3840]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][312] ([i915#3555] / [i915#3840]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2:          NOTRUN -> [SKIP][313] ([i915#3840] / [i915#9053])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-dg1:          NOTRUN -> [SKIP][314] ([i915#3840] / [i915#9053])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#3469])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-tglu:         NOTRUN -> [SKIP][316] ([i915#2065] / [i915#4854])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
    - shard-mtlp:         NOTRUN -> [SKIP][317] ([i915#4854])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html
    - shard-dg2:          NOTRUN -> [SKIP][318] ([i915#4854])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_feature_discovery@chamelium.html
    - shard-rkl:          NOTRUN -> [SKIP][319] ([i915#4854])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          NOTRUN -> [SKIP][320] ([i915#1839]) +1 other test skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-rkl:          NOTRUN -> [SKIP][321] ([i915#1839]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-2/igt@kms_feature_discovery@display-4x.html
    - shard-tglu:         NOTRUN -> [SKIP][322] ([i915#1839]) +2 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_feature_discovery@display-4x.html
    - shard-mtlp:         NOTRUN -> [SKIP][323] ([i915#1839]) +1 other test skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2:          NOTRUN -> [SKIP][324] ([i915#9337])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
    - shard-dg1:          NOTRUN -> [SKIP][325] ([i915#9337])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          NOTRUN -> [SKIP][326] ([i915#658])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_feature_discovery@psr1.html
    - shard-dg1:          NOTRUN -> [SKIP][327] ([i915#658])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-19/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][328] ([fdo#109274]) +12 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-tglu:         NOTRUN -> [SKIP][329] ([fdo#109274] / [i915#3637] / [i915#3966])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-dg2:          NOTRUN -> [SKIP][330] ([fdo#109274] / [fdo#111767])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-dg1:          NOTRUN -> [SKIP][331] ([i915#8381]) +2 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][332] ([i915#3637]) +9 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][333] ([fdo#109274] / [i915#3637]) +7 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-fences:
    - shard-dg2:          NOTRUN -> [SKIP][334] ([i915#8381]) +2 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@kms_flip@flip-vs-fences.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][335] ([i915#8810]) +1 other test skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][336] ([i915#3555] / [i915#8810]) +1 other test skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][337] ([i915#2587] / [i915#2672]) +9 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][338] ([i915#2672]) +5 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][339] ([i915#2672]) +8 other tests skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][340] ([i915#2672]) +2 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][341] ([i915#2587] / [i915#2672]) +3 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-dg1:          NOTRUN -> [SKIP][342] ([fdo#109285])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-mtlp:         NOTRUN -> [SKIP][343] ([i915#5274])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][344] ([fdo#109280]) +44 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#8708]) +41 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][346] ([i915#5439])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-dg1:          NOTRUN -> [SKIP][347] ([i915#5439])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][348] ([i915#5460])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#3458]) +39 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][350] ([fdo#111825]) +89 other tests skip
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][351] ([i915#8708]) +46 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][352] ([i915#3023]) +42 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][353] ([i915#5460])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-dg1:          NOTRUN -> [SKIP][354] ([i915#9766])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
    - shard-dg2:          NOTRUN -> [SKIP][355] ([i915#9766])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2:          NOTRUN -> [SKIP][356] ([i915#9653])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-dg1:          NOTRUN -> [SKIP][357] ([i915#9653])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-16/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
    - shard-tglu:         NOTRUN -> [SKIP][358] ([fdo#110189]) +36 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][359] ([i915#1825]) +49 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][360] ([i915#8708]) +20 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][361] ([fdo#111825] / [i915#1825]) +47 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][362] ([i915#3458]) +44 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][363] ([i915#6118])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-rkl:          NOTRUN -> [SKIP][364] ([i915#433])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html
    - shard-tglu:         NOTRUN -> [SKIP][365] ([i915#433])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][366] ([i915#3555] / [i915#8228])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-mtlp:         NOTRUN -> [SKIP][367] ([i915#3555] / [i915#8228])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_hdr@static-toggle-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][368] ([i915#3555] / [i915#8228])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][369] ([i915#3555] / [i915#8228])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][370] ([i915#3555] / [i915#8228]) +3 other tests skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-mtlp:         NOTRUN -> [SKIP][371] ([i915#4816])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg2:          NOTRUN -> [SKIP][372] ([i915#4816])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-rkl:          NOTRUN -> [SKIP][373] ([i915#4816])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg1:          NOTRUN -> [SKIP][374] ([i915#1839]) +1 other test skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> [SKIP][375] ([i915#6301])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_panel_fitting@legacy.html
    - shard-dg2:          NOTRUN -> [SKIP][376] ([i915#6301])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_panel_fitting@legacy.html
    - shard-rkl:          NOTRUN -> [SKIP][377] ([i915#6301])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_panel_fitting@legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][378] ([i915#6301])
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-dg1:          NOTRUN -> [SKIP][379] ([fdo#109289]) +7 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][380] ([i915#7862]) +1 other test fail
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][381] ([i915#3582]) +3 other tests skip
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][382] ([i915#8821])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          NOTRUN -> [SKIP][383] ([i915#3555] / [i915#8821])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8806])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [FAIL][385] ([i915#8292])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][386] ([fdo#109271]) +342 other tests skip
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-glk1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][387] ([i915#9423]) +3 other tests skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][388] ([i915#5176]) +11 other tests skip
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][389] ([i915#9423]) +15 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][390] ([i915#9423]) +13 other tests skip
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][391] ([i915#9423]) +23 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][392] ([i915#5176] / [i915#9423]) +1 other test skip
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][393] ([i915#5176] / [i915#9423]) +3 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][394] ([i915#5176] / [i915#9423]) +3 other tests skip
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][395] ([i915#5235]) +7 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][396] ([i915#5235]) +23 other tests skip
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][397] ([i915#5235]) +21 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][398] ([i915#3555] / [i915#5235]) +5 other tests skip
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][399] ([i915#5235]) +3 other tests skip
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][400] ([i915#5235]) +3 other tests skip
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg1:          NOTRUN -> [SKIP][401] ([i915#5354])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-mtlp:         NOTRUN -> [SKIP][402] ([i915#9293])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-4/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg1:          NOTRUN -> [SKIP][403] ([i915#9685]) +1 other test skip
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][404] ([i915#5978])
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_pm_dc@dc6-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][405] ([i915#3361])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-14/igt@kms_pm_dc@dc6-dpms.html
    - shard-tglu:         [PASS][406] -> [FAIL][407] ([i915#9295])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13983/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-mtlp:         NOTRUN -> [FAIL][408] ([i915#9298])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-1/igt@kms_pm_dc@dc6-psr.html
    - shard-rkl:          NOTRUN -> [SKIP][409] ([i915#9685])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][410] ([i915#9340])
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][411] ([i915#9340])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [FAIL][412] ([i915#9301])
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-mtlp:         NOTRUN -> [SKIP][413] ([i915#8430])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][414] ([i915#9519])
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][415] ([i915#9519])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-dg2:          NOTRUN -> [FAIL][416] ([i915#8717])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-2/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          NOTRUN -> [SKIP][417] ([i915#9519])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglu:         NOTRUN -> [SKIP][418] ([i915#9519])
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
    - shard-mtlp:         NOTRUN -> [SKIP][419] ([i915#9519]) +1 other test skip
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@pc8-residency:
    - shard-mtlp:         NOTRUN -> [SKIP][420] ([fdo#109293]) +1 other test skip
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-3/igt@kms_pm_rpm@pc8-residency.html
    - shard-rkl:          NOTRUN -> [SKIP][421] ([fdo#109293] / [fdo#109506]) +1 other test skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-3/igt@kms_pm_rpm@pc8-residency.html
    - shard-dg1:          NOTRUN -> [SKIP][422] ([fdo#109293] / [fdo#109506]) +1 other test skip
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-18/igt@kms_pm_rpm@pc8-residency.html
    - shard-tglu:         NOTRUN -> [SKIP][423] ([fdo#109293] / [fdo#109506])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_pm_rpm@pc8-residency.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          NOTRUN -> [SKIP][424] ([i915#6524])
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
    - shard-tglu:         NOTRUN -> [SKIP][425] ([i915#6524])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html
    - shard-mtlp:         NOTRUN -> [SKIP][426] ([i915#6524])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-dg2:          NOTRUN -> [SKIP][427] ([i915#6524] / [i915#6805]) +2 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_prime@d3hot:
    - shard-dg1:          NOTRUN -> [SKIP][428] ([i915#6524]) +1 other test skip
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg1:          NOTRUN -> [SKIP][429] ([i915#9683]) +2 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-12/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          NOTRUN -> [SKIP][430] ([i915#9683]) +1 other test skip
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-tglu:         NOTRUN -> [SKIP][431] ([i915#9683])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][432] ([fdo#111068] / [i915#9683]) +4 other tests skip
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-15/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][433] ([fdo#111068] / [i915#9683]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-mtlp:         NOTRUN -> [SKIP][434] ([i915#4348]) +1 other test skip
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-mtlp-2/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2:          NOTRUN -> [SKIP][435] ([i915#9683]) +8 other tests skip
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html
    - shard-rkl:          NOTRUN -> [SKIP][436] ([fdo#111068] / [i915#9683]) +2 other tests skip
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html
    - shard-tglu:         NOTRUN -> [SKIP][437] ([fdo#109642] / [fdo#111068] / [i915#9683])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_rotation_crc@exhaust-fences:
    - shard-dg1:          NOTRUN -> [SKIP][438] ([i915#4884])
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-rkl:          NOTRUN -> [SKIP][439] ([i915#5289])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-dg1:          NOTRUN -> [SKIP][440] ([i915#5289])
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-tglu:         NOTRUN -> [SKIP][441] ([i915#5289])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][442] ([i915#4235]) +4 other tests skip
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_127359v2/shard-

== Logs ==

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

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

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

end of thread, other threads:[~2023-12-07 11:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-06  6:47 [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Chaitanya Kumar Borah
2023-12-06  7:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
2023-12-06  7:58 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2023-12-06 19:34   ` Saarinen, Jani
2023-12-07  9:20     ` Illipilli, TejasreeX
2023-12-06 11:04 ` [Intel-gfx] [topic/core-for-CI] Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" Shankar, Uma
2023-12-06 19:41   ` Saarinen, Jani
2023-12-06 21:32     ` Lucas De Marchi
2023-12-07  7:29       ` Saarinen, Jani
2023-12-07  9:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for Revert "debugfs: annotate debugfs handlers vs. removal with lockdep" (rev2) Patchwork
2023-12-07 11:10 ` ✗ Fi.CI.IGT: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).