All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg
@ 2023-02-27 14:27 Kamil Konieczny
  2023-02-27 16:09 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev2) Patchwork
                   ` (16 more replies)
  0 siblings, 17 replies; 25+ messages in thread
From: Kamil Konieczny @ 2023-02-27 14:27 UTC (permalink / raw)
  To: igt-dev; +Cc: Karol Krol, Arkadiusz Hiler

It was reported that kernel dumps can grow beyond disk limit size
so add checks for it and report error if that happen.

v2: return number of written bytes (Petri)

Reported-by: Karol Krol <karol.krol@intel.com>
Ref: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/129
Cc: Petri Latvala <adrinael@adrinael.net>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Petri Latvala <adrinael@adrinael.net>
---
 runner/executor.c | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/runner/executor.c b/runner/executor.c
index 597cd7f5..ae6cf1bb 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -584,7 +584,7 @@ void close_outputs(int *fds)
 }
 
 /* Returns the number of bytes written to disk, or a negative number on error */
-static long dump_dmesg(int kmsgfd, int outfd)
+static long dump_dmesg(int kmsgfd, int outfd, size_t disk_limit)
 {
 	/*
 	 * Write kernel messages to the log file until we reach
@@ -599,12 +599,18 @@ static long dump_dmesg(int kmsgfd, int outfd)
 	bool underflow_once = false;
 	char cont;
 	char buf[2048];
-	ssize_t r;
+	ssize_t r, disk_written;
 	long written = 0;
 
 	if (kmsgfd < 0)
 		return 0;
 
+	disk_written = lseek(outfd, 0, SEEK_SET);
+	if (disk_written > disk_limit) {
+		errf("Error dumping kmsg: disk limit already exceeded\n");
+		return 0; /* number of written bytes */
+	}
+
 	comparefd = open("/dev/kmsg", O_RDONLY | O_NONBLOCK);
 	if (comparefd < 0) {
 		errf("Error opening another fd for /dev/kmsg\n");
@@ -655,6 +661,13 @@ static long dump_dmesg(int kmsgfd, int outfd)
 
 		write(outfd, buf, r);
 		written += r;
+		disk_written += r;
+
+		if (disk_written > disk_limit) {
+			close(comparefd);
+			errf("Error dumping kmsg: disk limit exceeded\n");
+			return written;
+		}
 
 		if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;",
 					    &flags, &seq, &usec, &cont) == 4) {
@@ -890,6 +903,7 @@ static int monitor_output(pid_t child,
 	unsigned long taints = 0;
 	bool aborting = false;
 	size_t disk_usage = 0;
+	const size_t mon_disk_limit = settings->disk_usage_limit ? : (~(size_t)0);
 	bool socket_comms_used = false; /* whether the test actually uses comms */
 	bool results_received = false; /* whether we already have test results that might need overriding if we detect an abort condition */
 
@@ -1219,7 +1233,7 @@ static int monitor_output(pid_t child,
 
 			time_last_activity = time_now;
 
-			dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG]);
+			dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG], mon_disk_limit);
 			if (settings->sync)
 				fdatasync(outputs[_F_DMESG]);
 
@@ -1457,7 +1471,7 @@ static int monitor_output(pid_t child,
 					asprintf(abortreason, "Child refuses to die, tainted 0x%lx.", taints);
 				}
 
-				dump_dmesg(kmsgfd, outputs[_F_DMESG]);
+				dump_dmesg(kmsgfd, outputs[_F_DMESG], mon_disk_limit);
 				if (settings->sync)
 					fdatasync(outputs[_F_DMESG]);
 
@@ -1483,7 +1497,7 @@ static int monitor_output(pid_t child,
 		}
 	}
 
-	dump_dmesg(kmsgfd, outputs[_F_DMESG]);
+	dump_dmesg(kmsgfd, outputs[_F_DMESG], mon_disk_limit);
 	if (settings->sync)
 		fdatasync(outputs[_F_DMESG]);
 
-- 
2.37.2

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

* [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
@ 2023-02-27 16:09 ` Patchwork
  2023-02-27 22:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-02-27 16:09 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12786 -> IGTPW_8532
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (40 -> 38)
------------------------------

  Missing    (2): fi-kbl-soraka fi-snb-2520m 


Changes
-------

  No changes found


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@kms_plane_scaling@i915-max-source-size

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
  2023-02-27 16:09 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev2) Patchwork
@ 2023-02-27 22:32 ` Patchwork
  2023-02-28 20:11   ` Kamil Konieczny
  2023-03-03 10:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (14 subsequent siblings)
  16 siblings, 1 reply; 25+ messages in thread
From: Patchwork @ 2023-02-27 22:32 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12786_full -> IGTPW_8532_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8532_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8532_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@syncobj-timeline-export:
    - shard-tglu-10:      NOTRUN -> [ABORT][1] +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-timeline-export.html

  * igt@gem_exec_schedule@pi-common@rcs0:
    - shard-glk:          NOTRUN -> [ABORT][2] +14 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk9/igt@gem_exec_schedule@pi-common@rcs0.html

  * igt@gem_ringfill@engines-basic@vecs0:
    - shard-glk:          NOTRUN -> [DMESG-WARN][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_ringfill@engines-basic@vecs0.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-apl:          NOTRUN -> [ABORT][4] +11 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@prime_vgem@fence-wait@rcs0.html
    - shard-snb:          NOTRUN -> [ABORT][5] +6 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@prime_vgem@fence-wait@rcs0.html

  
#### Suppressed ####

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

  * igt@gem_exec_fence@long-history:
    - {shard-tglu}:       NOTRUN -> [ABORT][6] +6 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-5/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit:
    - {shard-dg1}:        NOTRUN -> [ABORT][7] +11 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@submit.html

  * igt@prime_vgem@wait@rcs0:
    - {shard-rkl}:        NOTRUN -> [ABORT][8] +10 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@prime_vgem@wait@rcs0.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@process:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@process.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          NOTRUN -> [FAIL][10] ([i915#2846])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          NOTRUN -> [FAIL][11] ([i915#2846])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][12] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) +5 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +3 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-apl:          NOTRUN -> [SKIP][15] ([fdo#109271]) +163 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#3323])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-10:      NOTRUN -> [SKIP][17] ([i915#2527] / [i915#2856])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][18] ([i915#2521])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][19] ([fdo#111614]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][20] ([fdo#111615]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][21] ([i915#3689] / [i915#3886])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3886]) +2 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-tglu-10:      NOTRUN -> [SKIP][23] ([i915#3689] / [i915#6095])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +8 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][25] ([i915#6095]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][26] ([i915#3689])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-tglu-10:      NOTRUN -> [SKIP][27] ([i915#7828])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-tglu-10:      NOTRUN -> [SKIP][28] ([fdo#109274])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          NOTRUN -> [FAIL][29] ([i915#2346])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-tglu-10:      NOTRUN -> [SKIP][30] ([fdo#110189]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +135 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
    - shard-snb:          NOTRUN -> [SKIP][32] ([fdo#109271]) +163 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-tglu-10:      NOTRUN -> [SKIP][33] ([fdo#109280]) +6 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-10:      NOTRUN -> [SKIP][34] ([fdo#109289])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][35] ([i915#4573]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> [FAIL][36] ([i915#4573]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu-10:      NOTRUN -> [SKIP][37] ([fdo#112054] / [i915#5288])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][38] ([i915#3555])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#658]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#658]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][41] ([fdo#111615] / [i915#5289])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2437])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-tglu-10:      NOTRUN -> [SKIP][43] ([i915#2437])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@v3d/v3d_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][44] ([fdo#109315] / [i915#2575]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@v3d/v3d_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][45] ([i915#2575])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@vc4/vc4_perfmon@create-single-perfmon.html

  
#### Possible fixes ####

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][46] ([i915#2842]) -> [PASS][47] +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-dg1}:        [SKIP][48] ([i915#1397]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 22:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-02-28 20:11   ` Kamil Konieczny
  0 siblings, 0 replies; 25+ messages in thread
From: Kamil Konieczny @ 2023-02-28 20:11 UTC (permalink / raw)
  To: igt-dev; +Cc: Sai Nandan Yedireswarapu, Lakshminarayana Vudum

Hi,

these are unrelated to change in runner.

Regards,
Kamil

On 2023-02-27 at 22:32:39 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev2)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_12786_full -> IGTPW_8532_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8532_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8532_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
> 
> Participating hosts (10 -> 10)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8532_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_exec_fence@syncobj-timeline-export:
>     - shard-tglu-10:      NOTRUN -> [ABORT][1] +2 similar issues
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-timeline-export.html
> 
>   * igt@gem_exec_schedule@pi-common@rcs0:
>     - shard-glk:          NOTRUN -> [ABORT][2] +14 similar issues
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk9/igt@gem_exec_schedule@pi-common@rcs0.html
> 
>   * igt@gem_ringfill@engines-basic@vecs0:
>     - shard-glk:          NOTRUN -> [DMESG-WARN][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_ringfill@engines-basic@vecs0.html
> 
>   * igt@prime_vgem@fence-wait@rcs0:
>     - shard-apl:          NOTRUN -> [ABORT][4] +11 similar issues
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@prime_vgem@fence-wait@rcs0.html
>     - shard-snb:          NOTRUN -> [ABORT][5] +6 similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@prime_vgem@fence-wait@rcs0.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@gem_exec_fence@long-history:
>     - {shard-tglu}:       NOTRUN -> [ABORT][6] +6 similar issues
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-5/igt@gem_exec_fence@long-history.html
> 
>   * igt@gem_exec_fence@submit:
>     - {shard-dg1}:        NOTRUN -> [ABORT][7] +11 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@submit.html
> 
>   * igt@prime_vgem@wait@rcs0:
>     - {shard-rkl}:        NOTRUN -> [ABORT][8] +10 similar issues
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@prime_vgem@wait@rcs0.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8532_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_persistence@process:
>     - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +2 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@process.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-apl:          NOTRUN -> [FAIL][10] ([i915#2846])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          NOTRUN -> [FAIL][11] ([i915#2846])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-vip@rcs0:
>     - shard-tglu-10:      NOTRUN -> [FAIL][12] ([i915#2842])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) +5 similar issues
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-random-ccs:
>     - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +3 similar issues
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
> 
>   * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
>     - shard-apl:          NOTRUN -> [SKIP][15] ([fdo#109271]) +163 similar issues
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#3323])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gen9_exec_parse@shadow-peek:
>     - shard-tglu-10:      NOTRUN -> [SKIP][17] ([i915#2527] / [i915#2856])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html
> 
>   * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
>     - shard-glk:          NOTRUN -> [FAIL][18] ([i915#2521])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>     - shard-tglu-10:      NOTRUN -> [SKIP][19] ([fdo#111614]) +1 similar issue
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>     - shard-tglu-10:      NOTRUN -> [SKIP][20] ([fdo#111615]) +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
> 
>   * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
>     - shard-tglu-10:      NOTRUN -> [SKIP][21] ([i915#3689] / [i915#3886])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
>     - shard-glk:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3886]) +2 similar issues
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
>     - shard-tglu-10:      NOTRUN -> [SKIP][23] ([i915#3689] / [i915#6095])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
>     - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +8 similar issues
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
>     - shard-tglu-10:      NOTRUN -> [SKIP][25] ([i915#6095]) +1 similar issue
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
>     - shard-tglu-10:      NOTRUN -> [SKIP][26] ([i915#3689])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html
> 
>   * igt@kms_chamelium_edid@hdmi-mode-timings:
>     - shard-tglu-10:      NOTRUN -> [SKIP][27] ([i915#7828])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html
> 
>   * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>     - shard-tglu-10:      NOTRUN -> [SKIP][28] ([fdo#109274])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>     - shard-apl:          NOTRUN -> [FAIL][29] ([i915#2346])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
>     - shard-tglu-10:      NOTRUN -> [SKIP][30] ([fdo#110189]) +1 similar issue
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
>     - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +135 similar issues
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
>     - shard-snb:          NOTRUN -> [SKIP][32] ([fdo#109271]) +163 similar issues
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
>     - shard-tglu-10:      NOTRUN -> [SKIP][33] ([fdo#109280]) +6 similar issues
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
>     - shard-tglu-10:      NOTRUN -> [SKIP][34] ([fdo#109289])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
> 
>   * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
>     - shard-glk:          NOTRUN -> [FAIL][35] ([i915#4573]) +1 similar issue
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
>     - shard-apl:          NOTRUN -> [FAIL][36] ([i915#4573]) +1 similar issue
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html
> 
>   * igt@kms_plane_lowres@tiling-yf:
>     - shard-tglu-10:      NOTRUN -> [SKIP][37] ([fdo#112054] / [i915#5288])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html
> 
>   * igt@kms_plane_multiple@tiling-4:
>     - shard-tglu-10:      NOTRUN -> [SKIP][38] ([i915#3555])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
>     - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#658]) +2 similar issues
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
>     - shard-apl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#658]) +2 similar issues
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
>     - shard-tglu-10:      NOTRUN -> [SKIP][41] ([fdo#111615] / [i915#5289])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2437])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
>     - shard-tglu-10:      NOTRUN -> [SKIP][43] ([i915#2437])
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@v3d/v3d_perfmon@create-single-perfmon:
>     - shard-tglu-10:      NOTRUN -> [SKIP][44] ([fdo#109315] / [i915#2575]) +1 similar issue
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@v3d/v3d_perfmon@create-single-perfmon.html
> 
>   * igt@vc4/vc4_perfmon@create-single-perfmon:
>     - shard-tglu-10:      NOTRUN -> [SKIP][45] ([i915#2575])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@vc4/vc4_perfmon@create-single-perfmon.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - {shard-rkl}:        [FAIL][46] ([i915#2842]) -> [PASS][47] +2 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp:
>     - {shard-dg1}:        [SKIP][48] ([i915#1397]) -> [PASS][49]
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
>   [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
>   [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
>   [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>   [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
>   [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>   [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
>   [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>   [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
>   [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
>   [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>   [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
>   [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
>   [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>   [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
>   [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
>   [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
>   [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
>   [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
>   [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>   [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
>   [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
>   [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
>   [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
>   [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
>   [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
>   [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
>   [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
>   [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
>   [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>   [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
>   [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
>   [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
>   [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
>   [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
>   [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
>   [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
>   [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
>   [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
>   [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
>   [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
>   [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7173 -> IGTPW_8532
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
>   IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html

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

* [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
  2023-02-27 16:09 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev2) Patchwork
  2023-02-27 22:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-03-03 10:49 ` Patchwork
  2023-03-05  9:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-03-03 10:49 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12786 -> IGTPW_8532
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_8532 need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8532, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (40 -> 38)
------------------------------

  Missing    (2): fi-kbl-soraka fi-snb-2520m 

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

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

### IGT changes ###

#### Warnings ####

  * igt@gem_exec_fence@basic-busy@ccs0:
    - bat-dg2-11:         [ABORT][1] ([i915#8233]) -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-dg2-11/igt@gem_exec_fence@basic-busy@ccs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-dg2-11/igt@gem_exec_fence@basic-busy@ccs0.html

  * igt@gem_exec_fence@basic-busy@ccs3:
    - bat-dg2-9:          [ABORT][3] ([i915#8233]) -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-dg2-9/igt@gem_exec_fence@basic-busy@ccs3.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-dg2-9/igt@gem_exec_fence@basic-busy@ccs3.html
    - bat-atsm-1:         [ABORT][5] ([i915#8233]) -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-atsm-1/igt@gem_exec_fence@basic-busy@ccs3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-atsm-1/igt@gem_exec_fence@basic-busy@ccs3.html
    - bat-dg2-8:          [ABORT][7] ([i915#8233]) -> [ABORT][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-dg2-8/igt@gem_exec_fence@basic-busy@ccs3.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-dg2-8/igt@gem_exec_fence@basic-busy@ccs3.html

  * igt@gem_exec_fence@basic-busy@rcs0:
    - fi-blb-e6850:       [ABORT][9] ([i915#8233]) -> [ABORT][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-blb-e6850/igt@gem_exec_fence@basic-busy@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-blb-e6850/igt@gem_exec_fence@basic-busy@rcs0.html
    - fi-pnv-d510:        [ABORT][11] ([i915#8233]) -> [ABORT][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-pnv-d510/igt@gem_exec_fence@basic-busy@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-pnv-d510/igt@gem_exec_fence@basic-busy@rcs0.html

  * igt@gem_exec_fence@basic-busy@vcs0:
    - fi-ivb-3770:        [ABORT][13] ([i915#8233]) -> [ABORT][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-ivb-3770/igt@gem_exec_fence@basic-busy@vcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-ivb-3770/igt@gem_exec_fence@basic-busy@vcs0.html
    - fi-elk-e7500:       [ABORT][15] ([i915#8233]) -> [ABORT][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-elk-e7500/igt@gem_exec_fence@basic-busy@vcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-elk-e7500/igt@gem_exec_fence@basic-busy@vcs0.html
    - fi-ilk-650:         [ABORT][17] ([i915#8233]) -> [ABORT][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-ilk-650/igt@gem_exec_fence@basic-busy@vcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-ilk-650/igt@gem_exec_fence@basic-busy@vcs0.html

  * igt@gem_exec_fence@basic-busy@vecs0:
    - bat-adlp-9:         [ABORT][19] ([i915#8233]) -> [ABORT][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-adlp-9/igt@gem_exec_fence@basic-busy@vecs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-adlp-9/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-skl-guc:         [ABORT][21] ([i915#8233]) -> [ABORT][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-skl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-skl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-dg1-6:          [ABORT][23] ([i915#8233]) -> [ABORT][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-dg1-6/igt@gem_exec_fence@basic-busy@vecs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-dg1-6/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-cfl-8109u:       [ABORT][25] ([i915#8233]) -> [ABORT][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-cfl-8109u/igt@gem_exec_fence@basic-busy@vecs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-cfl-8109u/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-kbl-7567u:       [ABORT][27] ([i915#8233]) -> [ABORT][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vecs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-adln-1:         [ABORT][29] ([i915#8233]) -> [ABORT][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-adln-1/igt@gem_exec_fence@basic-busy@vecs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-adln-1/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-bsw-nick:        [ABORT][31] ([i915#8233]) -> [ABORT][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-bsw-nick/igt@gem_exec_fence@basic-busy@vecs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-bsw-nick/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-kbl-guc:         [ABORT][33] ([i915#8233]) -> [ABORT][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-kbl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-kbl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-adlm-1:         [ABORT][35] ([i915#8233]) -> [ABORT][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-adlm-1/igt@gem_exec_fence@basic-busy@vecs0.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-adlm-1/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-rplp-1:         [ABORT][37] ([i915#8233]) -> [ABORT][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-rplp-1/igt@gem_exec_fence@basic-busy@vecs0.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-rplp-1/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-tgl-1115g4:      [ABORT][39] ([i915#8233]) -> [ABORT][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-tgl-1115g4/igt@gem_exec_fence@basic-busy@vecs0.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-tgl-1115g4/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-bsw-n3050:       [ABORT][41] ([i915#8233]) -> [ABORT][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-bsw-n3050/igt@gem_exec_fence@basic-busy@vecs0.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-bsw-n3050/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-cfl-guc:         [ABORT][43] ([i915#8233]) -> [ABORT][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-cfl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-cfl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-kbl-x1275:       [ABORT][45] ([i915#8233]) -> [ABORT][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-kbl-x1275/igt@gem_exec_fence@basic-busy@vecs0.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-kbl-x1275/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-hsw-4770:        [ABORT][47] ([i915#8233]) -> [ABORT][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-hsw-4770/igt@gem_exec_fence@basic-busy@vecs0.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-hsw-4770/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-rpls-2:         [ABORT][49] ([i915#8233]) -> [ABORT][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-rpls-2/igt@gem_exec_fence@basic-busy@vecs0.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-rpls-2/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-jsl-1:          [ABORT][51] ([i915#8233]) -> [ABORT][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-jsl-1/igt@gem_exec_fence@basic-busy@vecs0.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-jsl-1/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-cfl-8700k:       [ABORT][53] ([i915#8233]) -> [ABORT][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-cfl-8700k/igt@gem_exec_fence@basic-busy@vecs0.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-cfl-8700k/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-rpls-1:         [ABORT][55] ([i915#8233]) -> [ABORT][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-rpls-1/igt@gem_exec_fence@basic-busy@vecs0.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-rpls-1/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-adlp-6:         [ABORT][57] ([i915#8233]) -> [ABORT][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-adlp-6/igt@gem_exec_fence@basic-busy@vecs0.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-adlp-6/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-rkl-11600:       [ABORT][59] ([i915#8233]) -> [ABORT][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-rkl-11600/igt@gem_exec_fence@basic-busy@vecs0.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-rkl-11600/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-skl-6600u:       [ABORT][61] ([i915#8233]) -> [ABORT][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-skl-6600u/igt@gem_exec_fence@basic-busy@vecs0.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-skl-6600u/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-adls-5:         [ABORT][63] ([i915#8233]) -> [ABORT][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-adls-5/igt@gem_exec_fence@basic-busy@vecs0.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-adls-5/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-apl-guc:         [ABORT][65] ([i915#8233]) -> [ABORT][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-apl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-apl-guc/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-dg1-5:          [ABORT][67] ([i915#8233]) -> [ABORT][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-dg1-5/igt@gem_exec_fence@basic-busy@vecs0.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-dg1-5/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-dg1-7:          [ABORT][69] ([i915#8233]) -> [ABORT][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-dg1-7/igt@gem_exec_fence@basic-busy@vecs0.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-dg1-7/igt@gem_exec_fence@basic-busy@vecs0.html
    - bat-jsl-3:          [ABORT][71] ([i915#8233]) -> [ABORT][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/bat-jsl-3/igt@gem_exec_fence@basic-busy@vecs0.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/bat-jsl-3/igt@gem_exec_fence@basic-busy@vecs0.html
    - fi-glk-j4005:       [ABORT][73] ([i915#8233]) -> [ABORT][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/fi-glk-j4005/igt@gem_exec_fence@basic-busy@vecs0.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/fi-glk-j4005/igt@gem_exec_fence@basic-busy@vecs0.html

  
  [i915#8233]: https://gitlab.freedesktop.org/drm/intel/issues/8233


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@kms_plane_scaling@i915-max-source-size

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (2 preceding siblings ...)
  2023-03-03 10:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-03-05  9:11 ` Patchwork
  2023-03-06 17:46 ` Patchwork
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-03-05  9:11 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12786_full -> IGTPW_8532_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8532_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8532_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (10 -> 19)
------------------------------

  Additional (9): shard-dg2-1 shard-dg2-3 shard-dg2-5 shard-dg2-6 shard-dg2-7 shard-dg2-8 shard-dg2-10 shard-dg2-11 shard-dg2-12 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@basic-wait-all:
    - shard-apl:          NOTRUN -> [ABORT][1] +8 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fence@basic-wait-all.html
    - shard-snb:          NOTRUN -> ([ABORT][2], [ABORT][3]) +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@basic-wait-all.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@expired-history:
    - shard-glk:          NOTRUN -> ([ABORT][4], [ABORT][5]) ([i915#8233]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@gem_exec_fence@expired-history.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@submit@vecs0:
    - shard-glk:          NOTRUN -> [ABORT][6] +6 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
    - shard-snb:          NOTRUN -> [ABORT][7] +13 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
    - shard-tglu-10:      NOTRUN -> [ABORT][8] +2 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html

  * igt@gem_exec_schedule@pi-common@rcs0:
    - shard-glk:          NOTRUN -> ([ABORT][9], [ABORT][10]) +9 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk9/igt@gem_exec_schedule@pi-common@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_schedule@pi-common@rcs0.html

  * igt@gem_ringfill@engines-basic@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][11], [ABORT][12]) +7 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@rcs0.html

  * igt@gem_ringfill@engines-basic@vecs0:
    - shard-apl:          NOTRUN -> ([DMESG-WARN][13], [PASS][14])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@vecs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@vecs0.html

  * igt@gem_ringfill@legacy-basic@vebox:
    - shard-apl:          NOTRUN -> [DMESG-WARN][15]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@legacy-basic@vebox.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][16]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][17], [ABORT][18]) ([i915#8245])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@prime_vgem@fence-wait@rcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@prime_vgem@fence-wait@rcs0.html
    - shard-snb:          NOTRUN -> ([ABORT][19], [ABORT][20]) ([i915#8245])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@prime_vgem@fence-wait@rcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@prime_vgem@fence-wait@rcs0.html

  
#### Warnings ####

  * igt@gem_exec_fence@keep-in-fence@vecs0:
    - shard-apl:          [ABORT][21] ([i915#8233]) -> [ABORT][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - shard-apl:          [ABORT][23] ([i915#8233]) -> ([ABORT][24], [ABORT][25]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl1/igt@gem_exec_fence@syncobj-export.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fence@syncobj-export.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@syncobj-export.html
    - shard-glk:          [ABORT][26] ([i915#8233]) -> [ABORT][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk4/igt@gem_exec_fence@syncobj-export.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-export.html

  * igt@perf_pmu@interrupts-sync:
    - shard-snb:          [ABORT][28] ([i915#8233]) -> [ABORT][29] +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-snb4/igt@perf_pmu@interrupts-sync.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@perf_pmu@interrupts-sync.html
    - shard-glk:          [ABORT][30] ([i915#8233]) -> ([ABORT][31], [ABORT][32]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk9/igt@perf_pmu@interrupts-sync.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@perf_pmu@interrupts-sync.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@perf_pmu@interrupts-sync.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> ([ABORT][33], [ABORT][34]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html

  * igt@gem_exec_await@wide-contexts:
    - {shard-dg2-8}:      NOTRUN -> [ABORT][35] +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-8/igt@gem_exec_await@wide-contexts.html

  * igt@gem_exec_fence@concurrent:
    - {shard-dg2-3}:      NOTRUN -> [ABORT][36] +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-3/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_fence@expired-history:
    - {shard-dg1}:        NOTRUN -> ([ABORT][37], [ABORT][38]) ([i915#8233])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@expired-history.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@long-history:
    - {shard-tglu}:       NOTRUN -> ([ABORT][39], [ABORT][40]) +5 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-5/igt@gem_exec_fence@long-history.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-1/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit:
    - {shard-dg1}:        NOTRUN -> [ABORT][41] +12 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@submit.html
    - {shard-dg2-6}:      NOTRUN -> [ABORT][42] +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-6/igt@gem_exec_fence@submit.html

  * igt@gem_exec_fence@submit3:
    - {shard-dg2-1}:      NOTRUN -> [ABORT][43] +2 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-1/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_fence@submit3@vecs0:
    - {shard-rkl}:        NOTRUN -> ([ABORT][44], [ABORT][45]) +7 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-4/igt@gem_exec_fence@submit3@vecs0.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@submit3@vecs0.html

  * igt@gem_exec_fence@submit@vecs0:
    - {shard-tglu}:       NOTRUN -> [ABORT][46] +11 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-4/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - {shard-rkl}:        [ABORT][47] ([i915#8233]) -> ([ABORT][48], [ABORT][49])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-6/igt@gem_exec_fence@syncobj-export.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-1/igt@gem_exec_fence@syncobj-export.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@syncobj-export.html
    - {shard-dg1}:        [ABORT][50] ([i915#8233]) -> ([ABORT][51], [ABORT][52]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-13/igt@gem_exec_fence@syncobj-export.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@gem_exec_fence@syncobj-export.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@syncobj-export.html
    - {shard-tglu}:       [ABORT][53] ([i915#8233]) -> ([ABORT][54], [ABORT][55])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-tglu-4/igt@gem_exec_fence@syncobj-export.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-8/igt@gem_exec_fence@syncobj-export.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-2/igt@gem_exec_fence@syncobj-export.html

  * igt@gem_exec_fence@syncobj-invalid-flags:
    - {shard-rkl}:        [ABORT][56] ([i915#8233]) -> [ABORT][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_exec_fence@syncobj-invalid-flags.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_exec_fence@syncobj-invalid-flags.html

  * igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines:
    - {shard-dg1}:        [ABORT][58] ([i915#8233]) -> [ABORT][59] +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html

  * igt@gem_exec_fence@syncobj-timeline-signal:
    - {shard-dg2-12}:     NOTRUN -> [ABORT][60] +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-12/igt@gem_exec_fence@syncobj-timeline-signal.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - {shard-rkl}:        NOTRUN -> [ABORT][61] +6 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_exec_schedule@wide@bcs0:
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][62]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_schedule@wide@bcs0.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - {shard-dg2-5}:      NOTRUN -> [ABORT][63]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - {shard-rkl}:        [ABORT][64] ([i915#7975]) -> [ABORT][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html

  * igt@gem_ringfill@engines-basic@rcs0:
    - {shard-dg2-10}:     NOTRUN -> [ABORT][66] +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-10/igt@gem_ringfill@engines-basic@rcs0.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - {shard-dg2-3}:      NOTRUN -> [INCOMPLETE][67]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  * igt@prime_vgem@fence-wait@rcs0:
    - {shard-dg2-7}:      NOTRUN -> [ABORT][68]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-7/igt@prime_vgem@fence-wait@rcs0.html

  * igt@prime_vgem@wait@rcs0:
    - {shard-dg2-11}:     NOTRUN -> [ABORT][69] +2 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-11/igt@prime_vgem@wait@rcs0.html

  
New tests
---------

  New tests have been introduced between CI_DRM_12786_full and IGTPW_8532_full:

### New IGT tests (6) ###

  * igt@kms_color@legacy-gamma@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

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

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

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-mixed:
    - shard-snb:          NOTRUN -> ([SKIP][70], [SKIP][71]) ([fdo#109271] / [i915#1099])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@engines-mixed.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_ctx_persistence@engines-mixed.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#1099]) +2 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu-10:      NOTRUN -> [SKIP][73] ([i915#280])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          NOTRUN -> ([FAIL][74], [FAIL][75]) ([i915#2846])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fair@basic-deadline.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          NOTRUN -> ([PASS][76], [FAIL][77]) ([i915#2846])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fair@basic-deadline.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][78] ([i915#2842])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [PASS][79] -> [FAIL][80] ([i915#2842]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fence@expired-history:
    - shard-apl:          NOTRUN -> ([ABORT][81], [ABORT][82]) ([i915#8233])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@expired-history.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@syncobj-timeline-export:
    - shard-tglu-10:      NOTRUN -> [ABORT][83] ([i915#8250])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-timeline-export.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> ([SKIP][84], [SKIP][85]) ([fdo#109271] / [i915#4613]) +5 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-glk:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#4613]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@massive:
    - shard-apl:          NOTRUN -> ([SKIP][87], [SKIP][88]) ([fdo#109271] / [i915#4613]) +2 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_lmem_swapping@massive.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-apl:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#4613]) +4 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> ([ABORT][90], [ABORT][91]) ([i915#8233])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-apl:          NOTRUN -> ([SKIP][92], [SKIP][93]) ([fdo#109271]) +134 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-snb:          NOTRUN -> ([SKIP][94], [SKIP][95]) ([fdo#109271]) +69 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_ringfill@engines-basic@vecs0:
    - shard-glk:          NOTRUN -> ([DMESG-WARN][96], [PASS][97]) ([i915#8233])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_ringfill@engines-basic@vecs0.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_ringfill@engines-basic@vecs0.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> ([SKIP][98], [SKIP][99]) ([fdo#109271] / [i915#3323])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#3323])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-10:      NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([PASS][102], [FAIL][103]) ([i915#2521])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][104] ([fdo#111614]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][105] ([fdo#111615]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][106] ([i915#3689] / [i915#3886])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> ([SKIP][107], [SKIP][108]) ([fdo#109271] / [i915#3886]) +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][109] ([fdo#111615] / [i915#3689])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#3886]) +7 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-tglu-10:      NOTRUN -> [SKIP][111] ([i915#3689] / [i915#6095])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> ([SKIP][112], [SKIP][113]) ([fdo#109271] / [i915#3886]) +8 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][114] ([i915#6095]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#3886]) +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][116] ([i915#3689])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-tglu-10:      NOTRUN -> [SKIP][117] ([i915#7828])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu-10:      NOTRUN -> [SKIP][118] ([i915#3359])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-tglu-10:      NOTRUN -> [SKIP][119] ([fdo#109274])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          NOTRUN -> ([FAIL][120], [FAIL][121]) ([i915#2346])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
    - shard-glk:          NOTRUN -> [FAIL][122] ([i915#2346])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-glk:          NOTRUN -> [SKIP][123] ([fdo#109271]) +78 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-tglu-10:      NOTRUN -> [SKIP][124] ([fdo#110189]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> ([SKIP][125], [SKIP][126]) ([fdo#109271]) +122 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][127] ([i915#5439])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-tglu-10:      NOTRUN -> [SKIP][128] ([fdo#109280]) +9 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-10:      NOTRUN -> [SKIP][129] ([fdo#109289])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([FAIL][130], [FAIL][131]) ([i915#4573]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> ([FAIL][132], [FAIL][133]) ([i915#4573]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu-10:      NOTRUN -> [SKIP][134] ([fdo#112054] / [i915#5288])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][135] ([i915#3555])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][136] ([i915#5176]) +3 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> ([SKIP][137], [SKIP][138]) ([fdo#109271] / [i915#658]) +2 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglu-10:      NOTRUN -> [SKIP][139] ([fdo#111068] / [i915#658])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> ([SKIP][140], [SKIP][141]) ([fdo#109271] / [i915#658]) +2 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
    - shard-glk:          NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#658])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-apl:          NOTRUN -> [SKIP][143] ([fdo#109271]) +95 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][144] ([fdo#111615] / [i915#5289])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_vblank@pipe-c-query-busy-hang:
    - shard-snb:          NOTRUN -> [SKIP][145] ([fdo#109271]) +278 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@kms_vblank@pipe-c-query-busy-hang.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> ([SKIP][146], [SKIP][147]) ([fdo#109271] / [i915#2437])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-tglu-10:      NOTRUN -> [SKIP][148] ([i915#2437])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@prime_vgem@wait@rcs0:
    - shard-apl:          NOTRUN -> [ABORT][149] ([i915#8233])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@rcs0.html

  * igt@prime_vgem@wait@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][150] ([i915#8233]) +1 similar issue
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@vcs0.html

  * igt@v3d/v3d_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][151] ([fdo#109315] / [i915#2575]) +1 similar issue
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@v3d/v3d_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][152] ([i915#2575])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@vc4/vc4_perfmon@create-single-perfmon.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@virtual-idle:
    - {shard-rkl}:        [FAIL][153] ([i915#7742]) -> [PASS][154]
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html

  * igt@gem_ctx_persistence@hang:
    - {shard-rkl}:        [SKIP][155] ([i915#6252]) -> [PASS][156]
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_ctx_persistence@hang.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_ctx_persistence@hang.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][157] ([i915#2842]) -> [PASS][158] +2 similar issues
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-dg1}:        [SKIP][159] ([i915#1397]) -> [PASS][160]
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - {shard-rkl}:        [SKIP][161] ([i915#1845] / [i915#4098]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5410]: https://gitlab.freedesktop.org/drm/intel/issues/5410
  [i915#5433]: https://gitlab.freedesktop.org/drm/intel/issues/5433
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
  [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8233]: https://gitlab.freedesktop.org/drm/intel/issues/8233
  [i915#8245]: https://gitlab.freedesktop.org/drm/intel/issues/8245
  [i915#8250]: https://gitlab.freedesktop.org/drm/intel/issues/8250


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (3 preceding siblings ...)
  2023-03-05  9:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-03-06 17:46 ` Patchwork
  2023-03-07  0:02 ` Patchwork
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-03-06 17:46 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12786_full -> IGTPW_8532_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8532_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8532_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (10 -> 11)
------------------------------

  Additional (1): shard-dg2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@basic-wait-all:
    - shard-snb:          NOTRUN -> ([ABORT][1], [ABORT][2]) ([i915#8250])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@basic-wait-all.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@long-history:
    - shard-glk:          NOTRUN -> [ABORT][3] +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit3:
    - shard-snb:          NOTRUN -> ([ABORT][4], [ABORT][5])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@submit3.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
    - shard-snb:          NOTRUN -> [ABORT][6] +13 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
    - shard-glk:          NOTRUN -> ([ABORT][7], [ABORT][8]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html

  * igt@gem_exec_fence@syncobj-timeline-repeat:
    - shard-glk:          NOTRUN -> ([ABORT][9], [ABORT][10]) ([i915#8233])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fence@syncobj-timeline-repeat.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@syncobj-timeline-repeat.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][11], [ABORT][12]) +6 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_schedule@reorder-wide@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_ringfill@engines-basic@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][13], [ABORT][14]) ([i915#8233])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@rcs0.html

  * igt@perf_pmu@interrupts-sync:
    - shard-apl:          NOTRUN -> [ABORT][15] +7 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@perf_pmu@interrupts-sync.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][16], [ABORT][17]) ([i915#8245])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@prime_vgem@fence-wait@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@prime_vgem@fence-wait@rcs0.html
    - shard-tglu-10:      NOTRUN -> [ABORT][18] +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@prime_vgem@fence-wait@rcs0.html

  
#### Warnings ####

  * igt@gem_exec_fence@keep-in-fence@vecs0:
    - shard-apl:          [ABORT][19] ([i915#8233]) -> [ABORT][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - shard-apl:          [ABORT][21] ([i915#8233]) -> ([ABORT][22], [ABORT][23]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl1/igt@gem_exec_fence@syncobj-export.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fence@syncobj-export.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@syncobj-export.html
    - shard-glk:          [ABORT][24] ([i915#8233]) -> [ABORT][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk4/igt@gem_exec_fence@syncobj-export.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-export.html

  * igt@perf_pmu@interrupts-sync:
    - shard-snb:          [ABORT][26] ([i915#8233]) -> [ABORT][27] +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-snb4/igt@perf_pmu@interrupts-sync.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@perf_pmu@interrupts-sync.html
    - shard-glk:          [ABORT][28] ([i915#8233]) -> ([ABORT][29], [ABORT][30]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk9/igt@perf_pmu@interrupts-sync.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@perf_pmu@interrupts-sync.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@perf_pmu@interrupts-sync.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> ([ABORT][31], [ABORT][32]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html

  * igt@gem_exec_fence@expired-history:
    - {shard-dg1}:        NOTRUN -> ([ABORT][33], [ABORT][34]) ([i915#8233])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@expired-history.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@long-history:
    - {shard-tglu}:       NOTRUN -> ([ABORT][35], [ABORT][36]) +5 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-5/igt@gem_exec_fence@long-history.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-1/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit:
    - {shard-dg1}:        NOTRUN -> [ABORT][37] +12 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@submit.html

  * igt@gem_exec_fence@submit3@vecs0:
    - {shard-rkl}:        NOTRUN -> ([ABORT][38], [ABORT][39]) +7 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-4/igt@gem_exec_fence@submit3@vecs0.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@submit3@vecs0.html

  * igt@gem_exec_fence@submit@vecs0:
    - {shard-tglu}:       NOTRUN -> [ABORT][40] +11 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-4/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - {shard-rkl}:        [ABORT][41] ([i915#8233]) -> ([ABORT][42], [ABORT][43])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-6/igt@gem_exec_fence@syncobj-export.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-1/igt@gem_exec_fence@syncobj-export.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@syncobj-export.html
    - {shard-dg1}:        [ABORT][44] ([i915#8233]) -> ([ABORT][45], [ABORT][46]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-13/igt@gem_exec_fence@syncobj-export.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@gem_exec_fence@syncobj-export.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@syncobj-export.html
    - {shard-tglu}:       [ABORT][47] ([i915#8233]) -> ([ABORT][48], [ABORT][49])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-tglu-4/igt@gem_exec_fence@syncobj-export.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-8/igt@gem_exec_fence@syncobj-export.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-2/igt@gem_exec_fence@syncobj-export.html

  * igt@gem_exec_fence@syncobj-invalid-flags:
    - {shard-rkl}:        [ABORT][50] ([i915#8233]) -> [ABORT][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_exec_fence@syncobj-invalid-flags.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_exec_fence@syncobj-invalid-flags.html

  * igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines:
    - {shard-dg2}:        NOTRUN -> [ABORT][52] +21 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-8/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
    - {shard-dg1}:        [ABORT][53] ([i915#8233]) -> [ABORT][54] +2 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - {shard-rkl}:        NOTRUN -> [ABORT][55] +6 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_exec_schedule@wide@bcs0:
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][56]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_schedule@wide@bcs0.html

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - {shard-rkl}:        [ABORT][57] ([i915#7975]) -> [ABORT][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - {shard-dg2}:        NOTRUN -> [INCOMPLETE][59]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  
New tests
---------

  New tests have been introduced between CI_DRM_12786_full and IGTPW_8532_full:

### New IGT tests (6) ###

  * igt@kms_color@legacy-gamma@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

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

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

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-mixed:
    - shard-snb:          NOTRUN -> ([SKIP][60], [SKIP][61]) ([fdo#109271] / [i915#1099])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@engines-mixed.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_ctx_persistence@engines-mixed.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#1099]) +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu-10:      NOTRUN -> [SKIP][63] ([i915#280])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          NOTRUN -> ([FAIL][64], [FAIL][65]) ([i915#2846])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fair@basic-deadline.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          NOTRUN -> ([PASS][66], [FAIL][67]) ([i915#2846])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fair@basic-deadline.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][68] ([i915#2842])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [PASS][69] -> [FAIL][70] ([i915#2842]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fence@basic-wait-all:
    - shard-apl:          NOTRUN -> [ABORT][71] ([i915#8250])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@expired-history:
    - shard-glk:          NOTRUN -> ([ABORT][72], [ABORT][73]) ([i915#8233] / [i915#8250])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@gem_exec_fence@expired-history.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@expired-history.html
    - shard-apl:          NOTRUN -> ([ABORT][74], [ABORT][75]) ([i915#8233])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@expired-history.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@submit@vecs0:
    - shard-glk:          NOTRUN -> [ABORT][76] ([i915#8250])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-timeline-export:
    - shard-tglu-10:      NOTRUN -> [ABORT][77] ([i915#8250]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-timeline-export.html

  * igt@gem_exec_schedule@pi-common@rcs0:
    - shard-glk:          NOTRUN -> ([ABORT][78], [ABORT][79]) ([i915#8250])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk9/igt@gem_exec_schedule@pi-common@rcs0.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_schedule@pi-common@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> ([SKIP][80], [SKIP][81]) ([fdo#109271] / [i915#4613]) +5 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#4613]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@massive:
    - shard-apl:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([fdo#109271] / [i915#4613]) +2 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_lmem_swapping@massive.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +4 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> ([ABORT][86], [ABORT][87]) ([i915#8233])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-apl:          NOTRUN -> ([SKIP][88], [SKIP][89]) ([fdo#109271]) +134 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-snb:          NOTRUN -> ([SKIP][90], [SKIP][91]) ([fdo#109271]) +69 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_ringfill@engines-basic@vecs0:
    - shard-apl:          NOTRUN -> ([DMESG-WARN][92], [PASS][93]) ([i915#8250])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@vecs0.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@vecs0.html
    - shard-glk:          NOTRUN -> ([DMESG-WARN][94], [PASS][95]) ([i915#8233])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_ringfill@engines-basic@vecs0.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_ringfill@engines-basic@vecs0.html

  * igt@gem_ringfill@legacy-basic@vebox:
    - shard-apl:          NOTRUN -> [DMESG-WARN][96] ([i915#8250])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@legacy-basic@vebox.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> ([SKIP][97], [SKIP][98]) ([fdo#109271] / [i915#3323])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#3323])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-10:      NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([PASS][101], [FAIL][102]) ([i915#2521])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][103] ([fdo#111614]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][104] ([fdo#111615]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][105] ([i915#3689] / [i915#3886])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> ([SKIP][106], [SKIP][107]) ([fdo#109271] / [i915#3886]) +2 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][108] ([fdo#111615] / [i915#3689])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#3886]) +7 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-tglu-10:      NOTRUN -> [SKIP][110] ([i915#3689] / [i915#6095])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> ([SKIP][111], [SKIP][112]) ([fdo#109271] / [i915#3886]) +8 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][113] ([i915#6095]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#3886]) +3 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][115] ([i915#3689])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-tglu-10:      NOTRUN -> [SKIP][116] ([i915#7828])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][117] ([i915#7173])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu-10:      NOTRUN -> [SKIP][118] ([i915#3359])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-tglu-10:      NOTRUN -> [SKIP][119] ([fdo#109274])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          NOTRUN -> ([FAIL][120], [FAIL][121]) ([i915#2346])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
    - shard-glk:          NOTRUN -> [FAIL][122] ([i915#2346])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-glk:          NOTRUN -> [SKIP][123] ([fdo#109271]) +78 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-tglu-10:      NOTRUN -> [SKIP][124] ([fdo#110189]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> ([SKIP][125], [SKIP][126]) ([fdo#109271]) +122 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][127] ([i915#5439])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-tglu-10:      NOTRUN -> [SKIP][128] ([fdo#109280]) +9 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-10:      NOTRUN -> [SKIP][129] ([fdo#109289])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([FAIL][130], [FAIL][131]) ([i915#4573]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> ([FAIL][132], [FAIL][133]) ([i915#4573]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu-10:      NOTRUN -> [SKIP][134] ([fdo#112054] / [i915#5288])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][135] ([i915#3555])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][136] ([i915#5176]) +3 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> ([SKIP][137], [SKIP][138]) ([fdo#109271] / [i915#658]) +2 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglu-10:      NOTRUN -> [SKIP][139] ([fdo#111068] / [i915#658])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> ([SKIP][140], [SKIP][141]) ([fdo#109271] / [i915#658]) +2 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
    - shard-glk:          NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#658])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-apl:          NOTRUN -> [SKIP][143] ([fdo#109271]) +95 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][144] ([fdo#111615] / [i915#5289])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_vblank@pipe-c-query-busy-hang:
    - shard-snb:          NOTRUN -> [SKIP][145] ([fdo#109271]) +278 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@kms_vblank@pipe-c-query-busy-hang.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> ([SKIP][146], [SKIP][147]) ([fdo#109271] / [i915#2437])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-tglu-10:      NOTRUN -> [SKIP][148] ([i915#2437])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-snb:          NOTRUN -> ([ABORT][149], [ABORT][150]) ([i915#8245])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@prime_vgem@fence-wait@rcs0.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@prime_vgem@fence-wait@rcs0.html

  * igt@prime_vgem@wait@rcs0:
    - shard-apl:          NOTRUN -> [ABORT][151] ([i915#8233])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@rcs0.html

  * igt@prime_vgem@wait@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][152] ([i915#8233]) +1 similar issue
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@vcs0.html

  * igt@v3d/v3d_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][153] ([fdo#109315] / [i915#2575]) +1 similar issue
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@v3d/v3d_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][154] ([i915#2575])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@vc4/vc4_perfmon@create-single-perfmon.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@virtual-idle:
    - {shard-rkl}:        [FAIL][155] ([i915#7742]) -> [PASS][156]
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html

  * igt@gem_ctx_persistence@hang:
    - {shard-rkl}:        [SKIP][157] ([i915#6252]) -> [PASS][158]
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_ctx_persistence@hang.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_ctx_persistence@hang.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][159] ([i915#2842]) -> [PASS][160] +2 similar issues
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-dg1}:        [SKIP][161] ([i915#1397]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - {shard-rkl}:        [SKIP][163] ([i915#1845] / [i915#4098]) -> [PASS][164]
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5410]: https://gitlab.freedesktop.org/drm/intel/issues/5410
  [i915#5433]: https://gitlab.freedesktop.org/drm/intel/issues/5433
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
  [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8233]: https://gitlab.freedesktop.org/drm/intel/issues/8233
  [i915#8245]: https://gitlab.freedesktop.org/drm/intel/issues/8245
  [i915#8250]: https://gitlab.freedesktop.org/drm/intel/issues/8250


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (4 preceding siblings ...)
  2023-03-06 17:46 ` Patchwork
@ 2023-03-07  0:02 ` Patchwork
  2023-03-07 11:41 ` Patchwork
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-03-07  0:02 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12786_full -> IGTPW_8532_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8532_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8532_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (10 -> 11)
------------------------------

  Additional (1): shard-dg2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@basic-wait-all:
    - shard-snb:          NOTRUN -> ([ABORT][1], [ABORT][2]) ([i915#8250])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@basic-wait-all.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@long-history:
    - shard-glk:          NOTRUN -> [ABORT][3] +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit3:
    - shard-snb:          NOTRUN -> ([ABORT][4], [ABORT][5])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@submit3.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
    - shard-snb:          NOTRUN -> [ABORT][6] +13 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
    - shard-glk:          NOTRUN -> ([ABORT][7], [ABORT][8]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html

  * igt@gem_exec_fence@syncobj-timeline-repeat:
    - shard-glk:          NOTRUN -> ([ABORT][9], [ABORT][10]) ([i915#8233])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fence@syncobj-timeline-repeat.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@syncobj-timeline-repeat.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][11], [ABORT][12]) +6 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_schedule@reorder-wide@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_ringfill@engines-basic@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][13], [ABORT][14]) ([i915#8233])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@rcs0.html

  * igt@perf_pmu@interrupts-sync:
    - shard-apl:          NOTRUN -> [ABORT][15] +7 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@perf_pmu@interrupts-sync.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][16], [ABORT][17]) ([i915#8245])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@prime_vgem@fence-wait@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@prime_vgem@fence-wait@rcs0.html
    - shard-tglu-10:      NOTRUN -> [ABORT][18] +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@prime_vgem@fence-wait@rcs0.html

  
#### Warnings ####

  * igt@gem_exec_fence@keep-in-fence@vecs0:
    - shard-apl:          [ABORT][19] ([i915#8233]) -> [ABORT][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - shard-apl:          [ABORT][21] ([i915#8233]) -> ([ABORT][22], [ABORT][23]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl1/igt@gem_exec_fence@syncobj-export.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fence@syncobj-export.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@syncobj-export.html
    - shard-glk:          [ABORT][24] ([i915#8233]) -> [ABORT][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk4/igt@gem_exec_fence@syncobj-export.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-export.html

  * igt@perf_pmu@interrupts-sync:
    - shard-snb:          [ABORT][26] ([i915#8233]) -> [ABORT][27] +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-snb4/igt@perf_pmu@interrupts-sync.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@perf_pmu@interrupts-sync.html
    - shard-glk:          [ABORT][28] ([i915#8233]) -> ([ABORT][29], [ABORT][30]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk9/igt@perf_pmu@interrupts-sync.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@perf_pmu@interrupts-sync.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@perf_pmu@interrupts-sync.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> ([ABORT][31], [ABORT][32]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html

  * igt@gem_exec_fence@expired-history:
    - {shard-dg1}:        NOTRUN -> ([ABORT][33], [ABORT][34]) ([i915#8233])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@expired-history.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@long-history:
    - {shard-tglu}:       NOTRUN -> ([ABORT][35], [ABORT][36]) +5 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-5/igt@gem_exec_fence@long-history.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-1/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit:
    - {shard-dg1}:        NOTRUN -> [ABORT][37] +12 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@submit.html

  * igt@gem_exec_fence@submit3@vecs0:
    - {shard-rkl}:        NOTRUN -> ([ABORT][38], [ABORT][39]) +7 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-4/igt@gem_exec_fence@submit3@vecs0.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@submit3@vecs0.html

  * igt@gem_exec_fence@submit@vecs0:
    - {shard-tglu}:       NOTRUN -> [ABORT][40] +11 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-4/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - {shard-rkl}:        [ABORT][41] ([i915#8233]) -> ([ABORT][42], [ABORT][43])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-6/igt@gem_exec_fence@syncobj-export.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-1/igt@gem_exec_fence@syncobj-export.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@syncobj-export.html
    - {shard-dg1}:        [ABORT][44] ([i915#8233]) -> ([ABORT][45], [ABORT][46]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-13/igt@gem_exec_fence@syncobj-export.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@gem_exec_fence@syncobj-export.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@syncobj-export.html
    - {shard-tglu}:       [ABORT][47] ([i915#8233]) -> ([ABORT][48], [ABORT][49])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-tglu-4/igt@gem_exec_fence@syncobj-export.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-8/igt@gem_exec_fence@syncobj-export.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-2/igt@gem_exec_fence@syncobj-export.html

  * igt@gem_exec_fence@syncobj-invalid-flags:
    - {shard-rkl}:        [ABORT][50] ([i915#8233]) -> [ABORT][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_exec_fence@syncobj-invalid-flags.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_exec_fence@syncobj-invalid-flags.html

  * igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines:
    - {shard-dg2}:        NOTRUN -> [ABORT][52] +21 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-8/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
    - {shard-dg1}:        [ABORT][53] ([i915#8233]) -> [ABORT][54] +2 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - {shard-rkl}:        NOTRUN -> [ABORT][55] +6 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_exec_schedule@wide@bcs0:
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][56]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_schedule@wide@bcs0.html

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - {shard-rkl}:        [ABORT][57] ([i915#7975]) -> [ABORT][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - {shard-dg2}:        NOTRUN -> [INCOMPLETE][59]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  
New tests
---------

  New tests have been introduced between CI_DRM_12786_full and IGTPW_8532_full:

### New IGT tests (6) ###

  * igt@kms_color@legacy-gamma@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

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

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

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-mixed:
    - shard-snb:          NOTRUN -> ([SKIP][60], [SKIP][61]) ([fdo#109271] / [i915#1099])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@engines-mixed.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_ctx_persistence@engines-mixed.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#1099]) +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu-10:      NOTRUN -> [SKIP][63] ([i915#280])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          NOTRUN -> ([FAIL][64], [FAIL][65]) ([i915#2846])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fair@basic-deadline.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          NOTRUN -> ([PASS][66], [FAIL][67]) ([i915#2846])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fair@basic-deadline.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][68] ([i915#2842])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [PASS][69] -> [FAIL][70] ([i915#2842]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fence@basic-wait-all:
    - shard-apl:          NOTRUN -> [ABORT][71] ([i915#8250])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@expired-history:
    - shard-glk:          NOTRUN -> ([ABORT][72], [ABORT][73]) ([i915#8233] / [i915#8250])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@gem_exec_fence@expired-history.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@expired-history.html
    - shard-apl:          NOTRUN -> ([ABORT][74], [ABORT][75]) ([i915#8233])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@expired-history.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@submit@vecs0:
    - shard-glk:          NOTRUN -> [ABORT][76] ([i915#8250])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-timeline-export:
    - shard-tglu-10:      NOTRUN -> [ABORT][77] ([i915#8250]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-timeline-export.html

  * igt@gem_exec_schedule@pi-common@rcs0:
    - shard-glk:          NOTRUN -> ([ABORT][78], [ABORT][79]) ([i915#8250])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk9/igt@gem_exec_schedule@pi-common@rcs0.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_schedule@pi-common@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> ([SKIP][80], [SKIP][81]) ([fdo#109271] / [i915#4613]) +5 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#4613]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@massive:
    - shard-apl:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([fdo#109271] / [i915#4613]) +2 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_lmem_swapping@massive.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +4 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> ([ABORT][86], [ABORT][87]) ([i915#8233])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-apl:          NOTRUN -> ([SKIP][88], [SKIP][89]) ([fdo#109271]) +134 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-snb:          NOTRUN -> ([SKIP][90], [SKIP][91]) ([fdo#109271]) +69 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_ringfill@engines-basic@vecs0:
    - shard-apl:          NOTRUN -> ([DMESG-WARN][92], [PASS][93]) ([i915#8250])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@vecs0.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@vecs0.html
    - shard-glk:          NOTRUN -> ([DMESG-WARN][94], [PASS][95]) ([i915#8233])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_ringfill@engines-basic@vecs0.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_ringfill@engines-basic@vecs0.html

  * igt@gem_ringfill@legacy-basic@vebox:
    - shard-apl:          NOTRUN -> [DMESG-WARN][96] ([i915#8250])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@legacy-basic@vebox.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> ([SKIP][97], [SKIP][98]) ([fdo#109271] / [i915#3323])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#3323])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-10:      NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([PASS][101], [FAIL][102]) ([i915#2521])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][103] ([fdo#111614]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][104] ([fdo#111615]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][105] ([i915#3689] / [i915#3886])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> ([SKIP][106], [SKIP][107]) ([fdo#109271] / [i915#3886]) +2 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][108] ([fdo#111615] / [i915#3689])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#3886]) +7 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-tglu-10:      NOTRUN -> [SKIP][110] ([i915#3689] / [i915#6095])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> ([SKIP][111], [SKIP][112]) ([fdo#109271] / [i915#3886]) +8 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][113] ([i915#6095]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#3886]) +3 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][115] ([i915#3689])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-tglu-10:      NOTRUN -> [SKIP][116] ([i915#7828])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][117] ([i915#7173])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu-10:      NOTRUN -> [SKIP][118] ([i915#3359])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-tglu-10:      NOTRUN -> [SKIP][119] ([fdo#109274])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          NOTRUN -> ([FAIL][120], [FAIL][121]) ([i915#2346])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
    - shard-glk:          NOTRUN -> [FAIL][122] ([i915#2346])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-glk:          NOTRUN -> [SKIP][123] ([fdo#109271]) +78 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-tglu-10:      NOTRUN -> [SKIP][124] ([fdo#110189]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> ([SKIP][125], [SKIP][126]) ([fdo#109271]) +122 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][127] ([i915#5439])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-tglu-10:      NOTRUN -> [SKIP][128] ([fdo#109280]) +9 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-10:      NOTRUN -> [SKIP][129] ([fdo#109289])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([FAIL][130], [FAIL][131]) ([i915#4573]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> ([FAIL][132], [FAIL][133]) ([i915#4573]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu-10:      NOTRUN -> [SKIP][134] ([fdo#112054] / [i915#5288])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][135] ([i915#3555])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][136] ([i915#5176]) +3 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> ([SKIP][137], [SKIP][138]) ([fdo#109271] / [i915#658]) +2 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglu-10:      NOTRUN -> [SKIP][139] ([fdo#111068] / [i915#658])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> ([SKIP][140], [SKIP][141]) ([fdo#109271] / [i915#658]) +2 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
    - shard-glk:          NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#658])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-apl:          NOTRUN -> [SKIP][143] ([fdo#109271]) +95 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][144] ([fdo#111615] / [i915#5289])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_vblank@pipe-c-query-busy-hang:
    - shard-snb:          NOTRUN -> [SKIP][145] ([fdo#109271]) +278 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@kms_vblank@pipe-c-query-busy-hang.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> ([SKIP][146], [SKIP][147]) ([fdo#109271] / [i915#2437])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-tglu-10:      NOTRUN -> [SKIP][148] ([i915#2437])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-snb:          NOTRUN -> ([ABORT][149], [ABORT][150]) ([i915#8245])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@prime_vgem@fence-wait@rcs0.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@prime_vgem@fence-wait@rcs0.html

  * igt@prime_vgem@wait@rcs0:
    - shard-apl:          NOTRUN -> [ABORT][151] ([i915#8233])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@rcs0.html

  * igt@prime_vgem@wait@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][152] ([i915#8233]) +1 similar issue
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@vcs0.html

  * igt@v3d/v3d_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][153] ([fdo#109315] / [i915#2575]) +1 similar issue
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@v3d/v3d_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][154] ([i915#2575])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@vc4/vc4_perfmon@create-single-perfmon.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@virtual-idle:
    - {shard-rkl}:        [FAIL][155] ([i915#7742]) -> [PASS][156]
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html

  * igt@gem_ctx_persistence@hang:
    - {shard-rkl}:        [SKIP][157] ([i915#6252]) -> [PASS][158]
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_ctx_persistence@hang.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_ctx_persistence@hang.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][159] ([i915#2842]) -> [PASS][160] +2 similar issues
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-dg1}:        [SKIP][161] ([i915#1397]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - {shard-rkl}:        [SKIP][163] ([i915#1845] / [i915#4098]) -> [PASS][164]
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5410]: https://gitlab.freedesktop.org/drm/intel/issues/5410
  [i915#5433]: https://gitlab.freedesktop.org/drm/intel/issues/5433
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
  [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8233]: https://gitlab.freedesktop.org/drm/intel/issues/8233
  [i915#8245]: https://gitlab.freedesktop.org/drm/intel/issues/8245
  [i915#8250]: https://gitlab.freedesktop.org/drm/intel/issues/8250


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev2)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (5 preceding siblings ...)
  2023-03-07  0:02 ` Patchwork
@ 2023-03-07 11:41 ` Patchwork
  2023-04-19 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev3) Patchwork
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-03-07 11:41 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev2)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12786_full -> IGTPW_8532_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8532_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8532_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (10 -> 11)
------------------------------

  Additional (1): shard-dg2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_fence@basic-wait-all:
    - shard-snb:          NOTRUN -> ([ABORT][1], [ABORT][2]) ([i915#8250])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@basic-wait-all.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@long-history:
    - shard-glk:          NOTRUN -> [ABORT][3] +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit3:
    - shard-snb:          NOTRUN -> ([ABORT][4], [ABORT][5])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@submit3.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb1/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
    - shard-snb:          NOTRUN -> [ABORT][6] +13 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
    - shard-glk:          NOTRUN -> ([ABORT][7], [ABORT][8]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html

  * igt@gem_exec_fence@syncobj-timeline-repeat:
    - shard-glk:          NOTRUN -> ([ABORT][9], [ABORT][10]) ([i915#8233])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@syncobj-timeline-repeat.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fence@syncobj-timeline-repeat.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][11], [ABORT][12]) +6 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_schedule@reorder-wide@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_ringfill@engines-basic@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][13], [ABORT][14]) ([i915#8233])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@rcs0.html

  * igt@perf_pmu@interrupts-sync:
    - shard-apl:          NOTRUN -> [ABORT][15] +7 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@perf_pmu@interrupts-sync.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-apl:          NOTRUN -> ([ABORT][16], [ABORT][17]) ([i915#8245])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@prime_vgem@fence-wait@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@prime_vgem@fence-wait@rcs0.html
    - shard-tglu-10:      NOTRUN -> [ABORT][18] +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@prime_vgem@fence-wait@rcs0.html

  
#### Warnings ####

  * igt@gem_exec_fence@keep-in-fence@vecs0:
    - shard-apl:          [ABORT][19] ([i915#8233]) -> [ABORT][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@keep-in-fence@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - shard-apl:          [ABORT][21] ([i915#8233]) -> ([ABORT][22], [ABORT][23]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-apl1/igt@gem_exec_fence@syncobj-export.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fence@syncobj-export.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@syncobj-export.html
    - shard-glk:          [ABORT][24] ([i915#8233]) -> [ABORT][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk4/igt@gem_exec_fence@syncobj-export.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_exec_fence@syncobj-export.html

  * igt@perf_pmu@interrupts-sync:
    - shard-snb:          [ABORT][26] ([i915#8233]) -> [ABORT][27] +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-snb4/igt@perf_pmu@interrupts-sync.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@perf_pmu@interrupts-sync.html
    - shard-glk:          [ABORT][28] ([i915#8233]) -> ([ABORT][29], [ABORT][30]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk9/igt@perf_pmu@interrupts-sync.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@perf_pmu@interrupts-sync.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@perf_pmu@interrupts-sync.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> ([ABORT][31], [ABORT][32]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html

  * igt@gem_exec_fence@expired-history:
    - {shard-dg1}:        NOTRUN -> ([ABORT][33], [ABORT][34]) ([i915#8233])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@expired-history.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@long-history:
    - {shard-tglu}:       NOTRUN -> ([ABORT][35], [ABORT][36]) +5 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-5/igt@gem_exec_fence@long-history.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-1/igt@gem_exec_fence@long-history.html

  * igt@gem_exec_fence@submit:
    - {shard-dg1}:        NOTRUN -> [ABORT][37] +12 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@submit.html

  * igt@gem_exec_fence@submit3@vecs0:
    - {shard-rkl}:        NOTRUN -> ([ABORT][38], [ABORT][39]) +7 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@submit3@vecs0.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-4/igt@gem_exec_fence@submit3@vecs0.html

  * igt@gem_exec_fence@submit@vecs0:
    - {shard-tglu}:       NOTRUN -> [ABORT][40] +11 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-4/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-export:
    - {shard-rkl}:        [ABORT][41] ([i915#8233]) -> ([ABORT][42], [ABORT][43])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-6/igt@gem_exec_fence@syncobj-export.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fence@syncobj-export.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-1/igt@gem_exec_fence@syncobj-export.html
    - {shard-dg1}:        [ABORT][44] ([i915#8233]) -> ([ABORT][45], [ABORT][46]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-13/igt@gem_exec_fence@syncobj-export.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-15/igt@gem_exec_fence@syncobj-export.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@gem_exec_fence@syncobj-export.html
    - {shard-tglu}:       [ABORT][47] ([i915#8233]) -> ([ABORT][48], [ABORT][49])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-tglu-4/igt@gem_exec_fence@syncobj-export.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-8/igt@gem_exec_fence@syncobj-export.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-2/igt@gem_exec_fence@syncobj-export.html

  * igt@gem_exec_fence@syncobj-invalid-flags:
    - {shard-rkl}:        [ABORT][50] ([i915#8233]) -> [ABORT][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_exec_fence@syncobj-invalid-flags.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_exec_fence@syncobj-invalid-flags.html

  * igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines:
    - {shard-dg2}:        NOTRUN -> [ABORT][52] +21 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-8/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
    - {shard-dg1}:        [ABORT][53] ([i915#8233]) -> [ABORT][54] +2 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-13/igt@gem_exec_fence@syncobj-stationary-timeline-chain-engines.html

  * igt@gem_exec_schedule@reorder-wide@rcs0:
    - {shard-rkl}:        NOTRUN -> [ABORT][55] +6 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@gem_exec_schedule@reorder-wide@rcs0.html

  * igt@gem_exec_schedule@wide@bcs0:
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][56]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-18/igt@gem_exec_schedule@wide@bcs0.html

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - {shard-rkl}:        [ABORT][57] ([i915#7975]) -> [ABORT][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - {shard-dg2}:        NOTRUN -> [INCOMPLETE][59]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  
New tests
---------

  New tests have been introduced between CI_DRM_12786_full and IGTPW_8532_full:

### New IGT tests (6) ###

  * igt@kms_color@legacy-gamma@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

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

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

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-mixed:
    - shard-snb:          NOTRUN -> ([SKIP][60], [SKIP][61]) ([fdo#109271] / [i915#1099])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@engines-mixed.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_ctx_persistence@engines-mixed.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#1099]) +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu-10:      NOTRUN -> [SKIP][63] ([i915#280])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          NOTRUN -> ([FAIL][64], [FAIL][65]) ([i915#2846])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fair@basic-deadline.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          NOTRUN -> ([PASS][66], [FAIL][67]) ([i915#2846])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fair@basic-deadline.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][68] ([i915#2842])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [PASS][69] -> [FAIL][70] ([i915#2842]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fence@basic-wait-all:
    - shard-apl:          NOTRUN -> [ABORT][71] ([i915#8250])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_exec_fence@basic-wait-all.html

  * igt@gem_exec_fence@expired-history:
    - shard-glk:          NOTRUN -> ([ABORT][72], [ABORT][73]) ([i915#8233] / [i915#8250])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_fence@expired-history.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@gem_exec_fence@expired-history.html
    - shard-apl:          NOTRUN -> ([ABORT][74], [ABORT][75]) ([i915#8233])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@gem_exec_fence@expired-history.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_exec_fence@expired-history.html

  * igt@gem_exec_fence@submit@vecs0:
    - shard-glk:          NOTRUN -> [ABORT][76] ([i915#8250])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_exec_fence@submit@vecs0.html

  * igt@gem_exec_fence@syncobj-timeline-export:
    - shard-tglu-10:      NOTRUN -> [ABORT][77] ([i915#8250]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gem_exec_fence@syncobj-timeline-export.html

  * igt@gem_exec_schedule@pi-common@rcs0:
    - shard-glk:          NOTRUN -> ([ABORT][78], [ABORT][79]) ([i915#8250])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_exec_schedule@pi-common@rcs0.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk9/igt@gem_exec_schedule@pi-common@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> ([SKIP][80], [SKIP][81]) ([fdo#109271] / [i915#4613]) +5 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#4613]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@massive:
    - shard-apl:          NOTRUN -> ([SKIP][83], [SKIP][84]) ([fdo#109271] / [i915#4613]) +2 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_lmem_swapping@massive.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +4 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> ([ABORT][86], [ABORT][87]) ([i915#8233])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-apl:          NOTRUN -> ([SKIP][88], [SKIP][89]) ([fdo#109271]) +134 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-snb:          NOTRUN -> ([SKIP][90], [SKIP][91]) ([fdo#109271]) +69 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_ringfill@engines-basic@vecs0:
    - shard-apl:          NOTRUN -> ([DMESG-WARN][92], [PASS][93]) ([i915#8250])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@engines-basic@vecs0.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@gem_ringfill@engines-basic@vecs0.html
    - shard-glk:          NOTRUN -> ([PASS][94], [DMESG-WARN][95]) ([i915#8233])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@gem_ringfill@engines-basic@vecs0.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_ringfill@engines-basic@vecs0.html

  * igt@gem_ringfill@legacy-basic@vebox:
    - shard-apl:          NOTRUN -> [DMESG-WARN][96] ([i915#8250])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_ringfill@legacy-basic@vebox.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> ([SKIP][97], [SKIP][98]) ([fdo#109271] / [i915#3323])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#3323])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-10:      NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([PASS][101], [FAIL][102]) ([i915#2521])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][103] ([fdo#111614]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][104] ([fdo#111615]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][105] ([i915#3689] / [i915#3886])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> ([SKIP][106], [SKIP][107]) ([fdo#109271] / [i915#3886]) +2 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][108] ([fdo#111615] / [i915#3689])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#3886]) +7 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-tglu-10:      NOTRUN -> [SKIP][110] ([i915#3689] / [i915#6095])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> ([SKIP][111], [SKIP][112]) ([fdo#109271] / [i915#3886]) +8 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][113] ([i915#6095]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#3886]) +3 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][115] ([i915#3689])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-tglu-10:      NOTRUN -> [SKIP][116] ([i915#7828])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][117] ([i915#7173])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu-10:      NOTRUN -> [SKIP][118] ([i915#3359])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-tglu-10:      NOTRUN -> [SKIP][119] ([fdo#109274])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          NOTRUN -> ([FAIL][120], [FAIL][121]) ([i915#2346])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
    - shard-glk:          NOTRUN -> [FAIL][122] ([i915#2346])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-glk:          NOTRUN -> [SKIP][123] ([fdo#109271]) +78 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-tglu-10:      NOTRUN -> [SKIP][124] ([fdo#110189]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> ([SKIP][125], [SKIP][126]) ([fdo#109271]) +122 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][127] ([i915#5439])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-tglu-10:      NOTRUN -> [SKIP][128] ([fdo#109280]) +9 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-10:      NOTRUN -> [SKIP][129] ([fdo#109289])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> ([FAIL][130], [FAIL][131]) ([i915#4573]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> ([FAIL][132], [FAIL][133]) ([i915#4573]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu-10:      NOTRUN -> [SKIP][134] ([fdo#112054] / [i915#5288])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu-10:      NOTRUN -> [SKIP][135] ([i915#3555])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][136] ([i915#5176]) +3 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> ([SKIP][137], [SKIP][138]) ([fdo#109271] / [i915#658]) +2 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglu-10:      NOTRUN -> [SKIP][139] ([fdo#111068] / [i915#658])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> ([SKIP][140], [SKIP][141]) ([fdo#109271] / [i915#658]) +2 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
    - shard-glk:          NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#658])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-apl:          NOTRUN -> [SKIP][143] ([fdo#109271]) +95 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu-10:      NOTRUN -> [SKIP][144] ([fdo#111615] / [i915#5289])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_vblank@pipe-c-query-busy-hang:
    - shard-snb:          NOTRUN -> [SKIP][145] ([fdo#109271]) +278 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb6/igt@kms_vblank@pipe-c-query-busy-hang.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> ([SKIP][146], [SKIP][147]) ([fdo#109271] / [i915#2437])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-tglu-10:      NOTRUN -> [SKIP][148] ([i915#2437])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@prime_vgem@fence-wait@rcs0:
    - shard-snb:          NOTRUN -> ([ABORT][149], [ABORT][150]) ([i915#8245])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb4/igt@prime_vgem@fence-wait@rcs0.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-snb5/igt@prime_vgem@fence-wait@rcs0.html

  * igt@prime_vgem@wait@rcs0:
    - shard-apl:          NOTRUN -> [ABORT][151] ([i915#8233])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@rcs0.html

  * igt@prime_vgem@wait@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][152] ([i915#8233]) +1 similar issue
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-apl3/igt@prime_vgem@wait@vcs0.html

  * igt@v3d/v3d_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][153] ([fdo#109315] / [i915#2575]) +1 similar issue
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@v3d/v3d_perfmon@create-single-perfmon.html

  * igt@vc4/vc4_perfmon@create-single-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][154] ([i915#2575])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-tglu-10/igt@vc4/vc4_perfmon@create-single-perfmon.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@virtual-idle:
    - {shard-rkl}:        [FAIL][155] ([i915#7742]) -> [PASS][156]
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html

  * igt@gem_ctx_persistence@hang:
    - {shard-rkl}:        [SKIP][157] ([i915#6252]) -> [PASS][158]
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-5/igt@gem_ctx_persistence@hang.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-2/igt@gem_ctx_persistence@hang.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][159] ([i915#2842]) -> [PASS][160] +2 similar issues
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-dg1}:        [SKIP][161] ([i915#1397]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - {shard-rkl}:        [SKIP][163] ([i915#1845] / [i915#4098]) -> [PASS][164]
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12786/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5410]: https://gitlab.freedesktop.org/drm/intel/issues/5410
  [i915#5433]: https://gitlab.freedesktop.org/drm/intel/issues/5433
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
  [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8233]: https://gitlab.freedesktop.org/drm/intel/issues/8233
  [i915#8245]: https://gitlab.freedesktop.org/drm/intel/issues/8245
  [i915#8250]: https://gitlab.freedesktop.org/drm/intel/issues/8250


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7173 -> IGTPW_8532
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12786: f182ba6684a2393069248bc946f20ceabd9e395d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8532: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8532/index.html
  IGT_7173: deab4e0bdf5a9366b67d0a44f478f3da3c9a943b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev3)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (6 preceding siblings ...)
  2023-03-07 11:41 ` Patchwork
@ 2023-04-19 13:39 ` Patchwork
  2023-04-19 17:40   ` Kamil Konieczny
  2023-04-20  9:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4) Patchwork
                   ` (8 subsequent siblings)
  16 siblings, 1 reply; 25+ messages in thread
From: Patchwork @ 2023-04-19 13:39 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev3)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13028 -> IGTPW_8823
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8823 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8823, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (38 -> 36)
------------------------------

  Missing    (2): fi-kbl-soraka fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - bat-rpls-1:         NOTRUN -> [ABORT][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg2-11:         [PASS][2] -> [ABORT][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-dg2-11/igt@i915_selftest@live@hangcheck.html

  
#### Warnings ####

  * igt@i915_selftest@live@slpc:
    - bat-adln-1:         [DMESG-FAIL][4] ([i915#6997]) -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-adln-1/igt@i915_selftest@live@slpc.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-adln-1/igt@i915_selftest@live@slpc.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-tgl-1115g4:      [INCOMPLETE][6] ([i915#7443]) -> [INCOMPLETE][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-8809g:       [DMESG-FAIL][8] ([i915#8299]) -> [FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html

  
#### Suppressed ####

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

  * igt@i915_selftest@live@gt_mocs:
    - {bat-mtlp-8}:       NOTRUN -> [ABORT][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@gt_pm:
    - {bat-mtlp-8}:       NOTRUN -> [FAIL][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html

  * igt@kms_frontbuffer_tracking@basic:
    - {bat-mtlp-8}:       [DMESG-FAIL][12] ([i915#2017]) -> [FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-kbl-8809g:       [DMESG-WARN][14] ([i915#8298]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_pm_rps@basic-api:
    - bat-dg2-11:         [FAIL][16] ([i915#8308]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-dg2-11/igt@i915_pm_rps@basic-api.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-dg2-11/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_engines:
    - {bat-mtlp-8}:       [ABORT][18] -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-mtlp-8/igt@i915_selftest@live@gt_engines.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@i915_selftest@live@gt_engines.html

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

  * igt@i915_selftest@live@migrate:
    - bat-adlp-9:         [DMESG-FAIL][22] ([i915#7699]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-adlp-9/igt@i915_selftest@live@migrate.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-adlp-9/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [ABORT][24] ([i915#4983] / [i915#7981]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-rpls-1/igt@i915_selftest@live@reset.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-rpls-1/igt@i915_selftest@live@reset.html

  * igt@kms_psr@sprite_plane_onoff:
    - {bat-mtlp-8}:       [DMESG-WARN][26] ([i915#2017]) -> [PASS][27] +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html

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

  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
  [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
  [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
  [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
  [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
  [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7259 -> IGTPW_8823

  CI-20190529: 20190529
  CI_DRM_13028: 7b52b5268848bb482c4ffc4a7613ad13f4077a6b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8823: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/index.html
  IGT_7259: 3d3a7f1c041d3f8d84d7457abf96adef0ea071cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@xe_gpgpu_fill@basic
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@full-batch
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev3)
  2023-04-19 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev3) Patchwork
@ 2023-04-19 17:40   ` Kamil Konieczny
  0 siblings, 0 replies; 25+ messages in thread
From: Kamil Konieczny @ 2023-04-19 17:40 UTC (permalink / raw)
  To: igt-dev
  Cc: Laxminarayana Naramasetti, Sai Nandan Yedireswarapu, Raviteja Veesam

Hi,

these are unrelated to change in runner.

Regards,
Kamil

On 2023-04-19 at 13:39:03 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev3)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13028 -> IGTPW_8823
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8823 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8823, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/index.html
> 
> Participating hosts (38 -> 36)
> ------------------------------
> 
>   Missing    (2): fi-kbl-soraka fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8823:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_exec_suspend@basic-s3@smem:
>     - bat-rpls-1:         NOTRUN -> [ABORT][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - bat-dg2-11:         [PASS][2] -> [ABORT][3]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_selftest@live@slpc:
>     - bat-adln-1:         [DMESG-FAIL][4] ([i915#6997]) -> [FAIL][5]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-adln-1/igt@i915_selftest@live@slpc.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-adln-1/igt@i915_selftest@live@slpc.html
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - fi-tgl-1115g4:      [INCOMPLETE][6] ([i915#7443]) -> [INCOMPLETE][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
> 
>   * igt@kms_force_connector_basic@force-connector-state:
>     - fi-kbl-8809g:       [DMESG-FAIL][8] ([i915#8299]) -> [FAIL][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@i915_selftest@live@gt_mocs:
>     - {bat-mtlp-8}:       NOTRUN -> [ABORT][10]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
> 
>   * igt@i915_selftest@live@gt_pm:
>     - {bat-mtlp-8}:       NOTRUN -> [FAIL][11]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - {bat-mtlp-8}:       [DMESG-FAIL][12] ([i915#2017]) -> [FAIL][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8823 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - fi-kbl-8809g:       [DMESG-WARN][14] ([i915#8298]) -> [PASS][15]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
> 
>   * igt@i915_pm_rps@basic-api:
>     - bat-dg2-11:         [FAIL][16] ([i915#8308]) -> [PASS][17]
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-dg2-11/igt@i915_pm_rps@basic-api.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-dg2-11/igt@i915_pm_rps@basic-api.html
> 
>   * igt@i915_selftest@live@gt_engines:
>     - {bat-mtlp-8}:       [ABORT][18] -> [PASS][19]
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-mtlp-8/igt@i915_selftest@live@gt_engines.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@i915_selftest@live@gt_engines.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - bat-adls-5:         [DMESG-WARN][20] ([i915#5591]) -> [PASS][21]
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-adls-5/igt@i915_selftest@live@hangcheck.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-adls-5/igt@i915_selftest@live@hangcheck.html
> 
>   * igt@i915_selftest@live@migrate:
>     - bat-adlp-9:         [DMESG-FAIL][22] ([i915#7699]) -> [PASS][23]
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-adlp-9/igt@i915_selftest@live@migrate.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-adlp-9/igt@i915_selftest@live@migrate.html
> 
>   * igt@i915_selftest@live@reset:
>     - bat-rpls-1:         [ABORT][24] ([i915#4983] / [i915#7981]) -> [PASS][25]
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-rpls-1/igt@i915_selftest@live@reset.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-rpls-1/igt@i915_selftest@live@reset.html
> 
>   * igt@kms_psr@sprite_plane_onoff:
>     - {bat-mtlp-8}:       [DMESG-WARN][26] ([i915#2017]) -> [PASS][27] +2 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13028/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
>   [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
>   [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
>   [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
>   [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
>   [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
>   [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
>   [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
>   [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
>   [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7259 -> IGTPW_8823
> 
>   CI-20190529: 20190529
>   CI_DRM_13028: 7b52b5268848bb482c4ffc4a7613ad13f4077a6b @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8823: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/index.html
>   IGT_7259: 3d3a7f1c041d3f8d84d7457abf96adef0ea071cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> 
> Testlist changes
> ----------------
> 
> -igt@xe_gpgpu_fill@basic
> -igt@xe_intel_bb@add-remove-objects
> -igt@xe_intel_bb@bb-with-allocator
> -igt@xe_intel_bb@blit-reloc
> -igt@xe_intel_bb@blit-simple
> -igt@xe_intel_bb@create-in-region
> -igt@xe_intel_bb@delta-check
> -igt@xe_intel_bb@destroy-bb
> -igt@xe_intel_bb@full-batch
> -igt@xe_intel_bb@intel-bb-blit-none
> -igt@xe_intel_bb@intel-bb-blit-x
> -igt@xe_intel_bb@intel-bb-blit-y
> -igt@xe_intel_bb@lot-of-buffers
> -igt@xe_intel_bb@offset-control
> -igt@xe_intel_bb@purge-bb
> -igt@xe_intel_bb@render
> -igt@xe_intel_bb@reset-bb
> -igt@xe_intel_bb@simple-bb
> -igt@xe_intel_bb@simple-bb-ctx
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8823/index.html

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

* [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (7 preceding siblings ...)
  2023-04-19 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev3) Patchwork
@ 2023-04-20  9:51 ` Patchwork
  2023-04-20 18:58   ` Kamil Konieczny
  2023-04-20 13:03 ` [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Andrzej Hajda
                   ` (7 subsequent siblings)
  16 siblings, 1 reply; 25+ messages in thread
From: Patchwork @ 2023-04-20  9:51 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev4)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13033 -> IGTPW_8830
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8830 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8830, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (37 -> 37)
------------------------------

  Additional (1): fi-kbl-soraka 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@hangcheck:
    - fi-skl-guc:         [PASS][2] -> [FAIL][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-skl-guc/igt@i915_selftest@live@hangcheck.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - bat-rpls-1:         [ABORT][4] ([i915#6687] / [i915#7978]) -> [ABORT][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@i915_selftest@live@slpc:
    - bat-rpls-1:         [DMESG-FAIL][6] ([i915#6367] / [i915#6997]) -> [FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-rpls-1/igt@i915_selftest@live@slpc.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-rpls-1/igt@i915_selftest@live@slpc.html
    - bat-adln-1:         [DMESG-FAIL][8] ([i915#6997]) -> [FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-adln-1/igt@i915_selftest@live@slpc.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-adln-1/igt@i915_selftest@live@slpc.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-tgl-1115g4:      [INCOMPLETE][10] ([i915#7443]) -> [INCOMPLETE][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-8809g:       [DMESG-FAIL][12] ([i915#8299]) -> [FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html

  
#### Suppressed ####

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

  * igt@i915_selftest@live@gt_mocs:
    - {bat-mtlp-8}:       [ABORT][14] ([i915#8369]) -> [ABORT][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@gt_pm:
    - {bat-mtlp-8}:       [DMESG-FAIL][16] ([i915#8370]) -> [FAIL][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html

  * igt@kms_frontbuffer_tracking@basic:
    - {bat-mtlp-8}:       [DMESG-FAIL][18] ([i915#2017]) -> [FAIL][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#2190])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][22] ([fdo#109271]) +16 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-kbl-8809g:       [DMESG-WARN][23] ([i915#8298]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html

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

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

  * igt@kms_psr@sprite_plane_onoff:
    - {bat-mtlp-8}:       [DMESG-WARN][29] ([i915#2017]) -> [PASS][30] +2 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.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
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
  [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
  [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
  [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
  [i915#8369]: https://gitlab.freedesktop.org/drm/intel/issues/8369
  [i915#8370]: https://gitlab.freedesktop.org/drm/intel/issues/8370


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7261 -> IGTPW_8830

  CI-20190529: 20190529
  CI_DRM_13033: 9e075fd5e9f743c09bf3c220ffda0e32d868667b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8830: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html
  IGT_7261: 364d0b3291cba6e99deda07499c876bb2b6c1c1d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (8 preceding siblings ...)
  2023-04-20  9:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4) Patchwork
@ 2023-04-20 13:03 ` Andrzej Hajda
  2023-04-21  9:19 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev5) Patchwork
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Andrzej Hajda @ 2023-04-20 13:03 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev; +Cc: Arkadiusz Hiler, Karol Krol

Hi,

On 27.02.2023 15:27, Kamil Konieczny wrote:
> It was reported that kernel dumps can grow beyond disk limit size
> so add checks for it and report error if that happen.
>
> v2: return number of written bytes (Petri)
>
> Reported-by: Karol Krol <karol.krol@intel.com>
> Ref: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/129
> Cc: Petri Latvala <adrinael@adrinael.net>
> Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Reviewed-by: Petri Latvala <adrinael@adrinael.net>

It looks correct, however the main issue is that logs cut are quite 
often unusable, the vital info is usually at the end.
 From my observation the long dmesg is usually a result of trace dump in 
dmesg.
Limiting it in .config should help, currently it is:
CONFIG_GLOBAL_TRACE_BUF_SIZE=1441792
It seems huge since it is very compressed comparing to dmesg.

Anyway, going back to the subject:
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>

Regards
Andrzej

> ---
>   runner/executor.c | 24 +++++++++++++++++++-----
>   1 file changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/runner/executor.c b/runner/executor.c
> index 597cd7f5..ae6cf1bb 100644
> --- a/runner/executor.c
> +++ b/runner/executor.c
> @@ -584,7 +584,7 @@ void close_outputs(int *fds)
>   }
>   
>   /* Returns the number of bytes written to disk, or a negative number on error */
> -static long dump_dmesg(int kmsgfd, int outfd)
> +static long dump_dmesg(int kmsgfd, int outfd, size_t disk_limit)
>   {
>   	/*
>   	 * Write kernel messages to the log file until we reach
> @@ -599,12 +599,18 @@ static long dump_dmesg(int kmsgfd, int outfd)
>   	bool underflow_once = false;
>   	char cont;
>   	char buf[2048];
> -	ssize_t r;
> +	ssize_t r, disk_written;
>   	long written = 0;
>   
>   	if (kmsgfd < 0)
>   		return 0;
>   
> +	disk_written = lseek(outfd, 0, SEEK_SET);
> +	if (disk_written > disk_limit) {
> +		errf("Error dumping kmsg: disk limit already exceeded\n");
> +		return 0; /* number of written bytes */
> +	}
> +
>   	comparefd = open("/dev/kmsg", O_RDONLY | O_NONBLOCK);
>   	if (comparefd < 0) {
>   		errf("Error opening another fd for /dev/kmsg\n");
> @@ -655,6 +661,13 @@ static long dump_dmesg(int kmsgfd, int outfd)
>   
>   		write(outfd, buf, r);
>   		written += r;
> +		disk_written += r;
> +
> +		if (disk_written > disk_limit) {
> +			close(comparefd);
> +			errf("Error dumping kmsg: disk limit exceeded\n");
> +			return written;
> +		}
>   
>   		if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;",
>   					    &flags, &seq, &usec, &cont) == 4) {
> @@ -890,6 +903,7 @@ static int monitor_output(pid_t child,
>   	unsigned long taints = 0;
>   	bool aborting = false;
>   	size_t disk_usage = 0;
> +	const size_t mon_disk_limit = settings->disk_usage_limit ? : (~(size_t)0);
>   	bool socket_comms_used = false; /* whether the test actually uses comms */
>   	bool results_received = false; /* whether we already have test results that might need overriding if we detect an abort condition */
>   
> @@ -1219,7 +1233,7 @@ static int monitor_output(pid_t child,
>   
>   			time_last_activity = time_now;
>   
> -			dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG]);
> +			dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG], mon_disk_limit);
>   			if (settings->sync)
>   				fdatasync(outputs[_F_DMESG]);
>   
> @@ -1457,7 +1471,7 @@ static int monitor_output(pid_t child,
>   					asprintf(abortreason, "Child refuses to die, tainted 0x%lx.", taints);
>   				}
>   
> -				dump_dmesg(kmsgfd, outputs[_F_DMESG]);
> +				dump_dmesg(kmsgfd, outputs[_F_DMESG], mon_disk_limit);
>   				if (settings->sync)
>   					fdatasync(outputs[_F_DMESG]);
>   
> @@ -1483,7 +1497,7 @@ static int monitor_output(pid_t child,
>   		}
>   	}
>   
> -	dump_dmesg(kmsgfd, outputs[_F_DMESG]);
> +	dump_dmesg(kmsgfd, outputs[_F_DMESG], mon_disk_limit);
>   	if (settings->sync)
>   		fdatasync(outputs[_F_DMESG]);
>   

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4)
  2023-04-20  9:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4) Patchwork
@ 2023-04-20 18:58   ` Kamil Konieczny
  2023-04-21 14:20     ` Yedireswarapu, SaiX Nandan
  0 siblings, 1 reply; 25+ messages in thread
From: Kamil Konieczny @ 2023-04-20 18:58 UTC (permalink / raw)
  To: igt-dev
  Cc: Laxminarayana Naramasetti, Sai Nandan Yedireswarapu, Raviteja Veesam

Hi Sai,

looks like another report unrelated to change in runner.

Regards,
Kamil

On 2023-04-20 at 09:51:44 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev4)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13033 -> IGTPW_8830
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8830 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8830, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html
> 
> Participating hosts (37 -> 37)
> ------------------------------
> 
>   Additional (1): fi-kbl-soraka 
>   Missing    (1): fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8830:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@gt_pm:
>     - fi-kbl-soraka:      NOTRUN -> [FAIL][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-skl-guc:         [PASS][2] -> [FAIL][3]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_suspend@basic-s3@smem:
>     - bat-rpls-1:         [ABORT][4] ([i915#6687] / [i915#7978]) -> [ABORT][5]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
> 
>   * igt@i915_selftest@live@slpc:
>     - bat-rpls-1:         [DMESG-FAIL][6] ([i915#6367] / [i915#6997]) -> [FAIL][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-rpls-1/igt@i915_selftest@live@slpc.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-rpls-1/igt@i915_selftest@live@slpc.html
>     - bat-adln-1:         [DMESG-FAIL][8] ([i915#6997]) -> [FAIL][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-adln-1/igt@i915_selftest@live@slpc.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-adln-1/igt@i915_selftest@live@slpc.html
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - fi-tgl-1115g4:      [INCOMPLETE][10] ([i915#7443]) -> [INCOMPLETE][11]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
> 
>   * igt@kms_force_connector_basic@force-connector-state:
>     - fi-kbl-8809g:       [DMESG-FAIL][12] ([i915#8299]) -> [FAIL][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@i915_selftest@live@gt_mocs:
>     - {bat-mtlp-8}:       [ABORT][14] ([i915#8369]) -> [ABORT][15]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
> 
>   * igt@i915_selftest@live@gt_pm:
>     - {bat-mtlp-8}:       [DMESG-FAIL][16] ([i915#8370]) -> [FAIL][17]
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - {bat-mtlp-8}:       [DMESG-FAIL][18] ([i915#2017]) -> [FAIL][19]
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8830 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_huc_copy@huc-copy:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#2190])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@basic:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +3 similar issues
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-fast:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][22] ([fdo#109271]) +16 similar issues
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - fi-kbl-8809g:       [DMESG-WARN][23] ([i915#8298]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
> 
>   * igt@i915_selftest@live@gt_heartbeat:
>     - fi-apl-guc:         [DMESG-FAIL][25] ([i915#5334]) -> [PASS][26]
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - bat-adls-5:         [DMESG-WARN][27] ([i915#5591]) -> [PASS][28]
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-adls-5/igt@i915_selftest@live@hangcheck.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-adls-5/igt@i915_selftest@live@hangcheck.html
> 
>   * igt@kms_psr@sprite_plane_onoff:
>     - {bat-mtlp-8}:       [DMESG-WARN][29] ([i915#2017]) -> [PASS][30] +2 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.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
>   [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
>   [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
>   [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
>   [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
>   [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
>   [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
>   [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
>   [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
>   [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
>   [i915#8369]: https://gitlab.freedesktop.org/drm/intel/issues/8369
>   [i915#8370]: https://gitlab.freedesktop.org/drm/intel/issues/8370
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7261 -> IGTPW_8830
> 
>   CI-20190529: 20190529
>   CI_DRM_13033: 9e075fd5e9f743c09bf3c220ffda0e32d868667b @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8830: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html
>   IGT_7261: 364d0b3291cba6e99deda07499c876bb2b6c1c1d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html

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

* [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (9 preceding siblings ...)
  2023-04-20 13:03 ` [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Andrzej Hajda
@ 2023-04-21  9:19 ` Patchwork
  2023-04-21 13:51 ` Patchwork
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-04-21  9:19 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13038 -> IGTPW_8837
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8837 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (38 -> 35)
------------------------------

  Missing    (3): fi-kbl-soraka bat-mtlp-8 fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_pm:
    - fi-ivb-3770:        [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-rpls-1/igt@i915_selftest@live@reset.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-rpls-1/igt@i915_selftest@live@reset.html

  
#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-kbl-8809g:       [ABORT][5] ([i915#8298]) -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_selftest@live@slpc:
    - bat-adln-1:         [DMESG-FAIL][7] ([i915#6997]) -> [FAIL][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-adln-1/igt@i915_selftest@live@slpc.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-adln-1/igt@i915_selftest@live@slpc.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-8809g:       [DMESG-FAIL][9] ([i915#8299]) -> [FAIL][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@migrate:
    - bat-atsm-1:         [PASS][11] -> [FAIL][12] ([i915#6268])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-atsm-1/igt@i915_selftest@live@migrate.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-atsm-1/igt@i915_selftest@live@migrate.html

  
#### Possible fixes ####

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

  
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
  [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (10 preceding siblings ...)
  2023-04-21  9:19 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev5) Patchwork
@ 2023-04-21 13:51 ` Patchwork
  2023-04-21 14:16 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-04-21 13:51 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13038 -> IGTPW_8837
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8837 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (38 -> 35)
------------------------------

  Missing    (3): fi-kbl-soraka bat-mtlp-8 fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_pm:
    - fi-ivb-3770:        [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html

  
#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-kbl-8809g:       [ABORT][3] ([i915#8298]) -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_selftest@live@slpc:
    - bat-adln-1:         [DMESG-FAIL][5] ([i915#6997]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-adln-1/igt@i915_selftest@live@slpc.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-adln-1/igt@i915_selftest@live@slpc.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-8809g:       [DMESG-FAIL][7] ([i915#8299]) -> [FAIL][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@migrate:
    - bat-atsm-1:         [PASS][9] -> [FAIL][10] ([i915#6268])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-atsm-1/igt@i915_selftest@live@migrate.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-atsm-1/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [PASS][11] -> [ABORT][12] ([i915#8384])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-rpls-1/igt@i915_selftest@live@reset.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-rpls-1/igt@i915_selftest@live@reset.html

  
#### Possible fixes ####

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

  
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
  [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
  [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (11 preceding siblings ...)
  2023-04-21 13:51 ` Patchwork
@ 2023-04-21 14:16 ` Patchwork
  2023-04-21 15:39 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-04-21 14:16 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13038 -> IGTPW_8837
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_8837 need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (38 -> 35)
------------------------------

  Missing    (3): fi-kbl-soraka bat-mtlp-8 fi-snb-2520m 

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

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

### IGT changes ###

#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-kbl-8809g:       [ABORT][1] ([i915#8298]) -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_selftest@live@slpc:
    - bat-adln-1:         [DMESG-FAIL][3] ([i915#6997]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-adln-1/igt@i915_selftest@live@slpc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-adln-1/igt@i915_selftest@live@slpc.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-8809g:       [DMESG-FAIL][5] ([i915#8299]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@gt_pm:
    - fi-ivb-3770:        [PASS][7] -> [ABORT][8] ([i915#8385])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@migrate:
    - bat-atsm-1:         [PASS][9] -> [FAIL][10] ([i915#6268])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-atsm-1/igt@i915_selftest@live@migrate.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-atsm-1/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [PASS][11] -> [ABORT][12] ([i915#8384])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-rpls-1/igt@i915_selftest@live@reset.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-rpls-1/igt@i915_selftest@live@reset.html

  
#### Possible fixes ####

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

  
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
  [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
  [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
  [i915#8385]: https://gitlab.freedesktop.org/drm/intel/issues/8385


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4)
  2023-04-20 18:58   ` Kamil Konieczny
@ 2023-04-21 14:20     ` Yedireswarapu, SaiX Nandan
  0 siblings, 0 replies; 25+ messages in thread
From: Yedireswarapu, SaiX Nandan @ 2023-04-21 14:20 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev; +Cc: Marikkar, SanjuX, Veesam, RavitejaX

Hi,

Issue Re-reported, https://patchwork.freedesktop.org/series/114353/

Thanks,
Y Sai Nandan


-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com> 
Sent: Friday, April 21, 2023 12:28 AM
To: igt-dev@lists.freedesktop.org
Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Naramasetti, LaxminarayanaX <laxminarayanax.naramasetti@intel.com>
Subject: Re: ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4)

Hi Sai,

looks like another report unrelated to change in runner.

Regards,
Kamil

On 2023-04-20 at 09:51:44 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev4)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13033 -> IGTPW_8830 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8830 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8830, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html
> 
> Participating hosts (37 -> 37)
> ------------------------------
> 
>   Additional (1): fi-kbl-soraka 
>   Missing    (1): fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8830:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@gt_pm:
>     - fi-kbl-soraka:      NOTRUN -> [FAIL][1]
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@
> i915_selftest@live@gt_pm.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-skl-guc:         [PASS][2] -> [FAIL][3]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-skl-guc/igt@i91
> 5_selftest@live@hangcheck.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_suspend@basic-s3@smem:
>     - bat-rpls-1:         [ABORT][4] ([i915#6687] / [i915#7978]) -> [ABORT][5]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-rpls-1/igt@gem
> _exec_suspend@basic-s3@smem.html
> 
>   * igt@i915_selftest@live@slpc:
>     - bat-rpls-1:         [DMESG-FAIL][6] ([i915#6367] / [i915#6997]) -> [FAIL][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-rpls-1/igt@i915_selftest@live@slpc.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-rpls-1/igt@i915_selftest@live@slpc.html
>     - bat-adln-1:         [DMESG-FAIL][8] ([i915#6997]) -> [FAIL][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-adln-1/igt@i915_selftest@live@slpc.html
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-adln-1/igt@i91
> 5_selftest@live@slpc.html
> 
>   * igt@i915_suspend@basic-s3-without-i915:
>     - fi-tgl-1115g4:      [INCOMPLETE][10] ([i915#7443]) -> [INCOMPLETE][11]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>    [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-tgl-1115g4/igt@
> i915_suspend@basic-s3-without-i915.html
> 
>   * igt@kms_force_connector_basic@force-connector-state:
>     - fi-kbl-8809g:       [DMESG-FAIL][12] ([i915#8299]) -> [FAIL][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
>    [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-8809g/igt@k
> ms_force_connector_basic@force-connector-state.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@i915_selftest@live@gt_mocs:
>     - {bat-mtlp-8}:       [ABORT][14] ([i915#8369]) -> [ABORT][15]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
>    [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@i91
> 5_selftest@live@gt_mocs.html
> 
>   * igt@i915_selftest@live@gt_pm:
>     - {bat-mtlp-8}:       [DMESG-FAIL][16] ([i915#8370]) -> [FAIL][17]
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html
>    [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@i91
> 5_selftest@live@gt_pm.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - {bat-mtlp-8}:       [DMESG-FAIL][18] ([i915#2017]) -> [FAIL][19]
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@kms_frontbuffer_tracking@basic.html
>    [19]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@kms
> _frontbuffer_tracking@basic.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8830 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_huc_copy@huc-copy:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#2190])
>    [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@
> gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@basic:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +3 similar issues
>    [21]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@
> gem_lmem_swapping@basic.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-fast:
>     - fi-kbl-soraka:      NOTRUN -> [SKIP][22] ([fdo#109271]) +16 similar issues
>    [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-soraka/igt@
> kms_chamelium_frames@hdmi-crc-fast.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - fi-kbl-8809g:       [DMESG-WARN][23] ([i915#8298]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
>    [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-kbl-8809g/igt@c
> ore_hotunplug@unbind-rebind.html
> 
>   * igt@i915_selftest@live@gt_heartbeat:
>     - fi-apl-guc:         [DMESG-FAIL][25] ([i915#5334]) -> [PASS][26]
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
>    [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/fi-apl-guc/igt@i91
> 5_selftest@live@gt_heartbeat.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - bat-adls-5:         [DMESG-WARN][27] ([i915#5591]) -> [PASS][28]
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-adls-5/igt@i915_selftest@live@hangcheck.html
>    [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-adls-5/igt@i91
> 5_selftest@live@hangcheck.html
> 
>   * igt@kms_psr@sprite_plane_onoff:
>     - {bat-mtlp-8}:       [DMESG-WARN][29] ([i915#2017]) -> [PASS][30] +2 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13033/bat-mtlp-8/igt@kms_psr@sprite_plane_onoff.html
>    [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/bat-mtlp-8/igt@kms
> _psr@sprite_plane_onoff.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
>   [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
>   [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
>   [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
>   [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
>   [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
>   [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
>   [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
>   [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
>   [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
>   [i915#8369]: https://gitlab.freedesktop.org/drm/intel/issues/8369
>   [i915#8370]: https://gitlab.freedesktop.org/drm/intel/issues/8370
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7261 -> IGTPW_8830
> 
>   CI-20190529: 20190529
>   CI_DRM_13033: 9e075fd5e9f743c09bf3c220ffda0e32d868667b @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8830: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html
>   IGT_7261: 364d0b3291cba6e99deda07499c876bb2b6c1c1d @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8830/index.html

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (12 preceding siblings ...)
  2023-04-21 14:16 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-04-21 15:39 ` Patchwork
  2023-04-24 15:05   ` Kamil Konieczny
  2023-04-25  8:31   ` Kamil Konieczny
  2023-04-25 12:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  16 siblings, 2 replies; 25+ messages in thread
From: Patchwork @ 2023-04-21 15:39 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13038_full -> IGTPW_8837_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8837_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (8 -> 7)
------------------------------

  Missing    (1): shard-rkl0 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-snb7/igt@i915_module_load@reload-no-display.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@i915_module_load@reload-no-display.html

  
#### Warnings ####

  * igt@kms_content_protection@lic@pipe-a-dp-1:
    - shard-apl:          [TIMEOUT][3] ([i915#7173]) -> [TIMEOUT][4] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms_content_protection@lic@pipe-a-dp-1.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> [ABORT][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - {shard-rkl}:        [PASS][6] -> [ABORT][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> [SKIP][10] ([fdo#109271]) +49 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3323])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2346])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271]) +34 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +34 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - {shard-rkl}:        [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@gem_eio@hibernate:
    - {shard-dg1}:        [ABORT][21] ([i915#7975]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-14/igt@gem_eio@hibernate.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-17/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - {shard-dg1}:        [FAIL][23] ([i915#5784]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@gem_eio@unwedge-stress.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-16/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [FAIL][25] ([i915#2842]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [ABORT][27] ([i915#5566]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@gen9_exec_parse@allowed-single.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-tglu}:       [SKIP][29] ([i915#4281]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - {shard-dg1}:        [FAIL][31] ([i915#3591]) -> [PASS][32] +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - {shard-rkl}:        [SKIP][33] ([i915#1397]) -> [PASS][34] +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - {shard-dg1}:        [SKIP][35] ([i915#1397]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_selftest@live@late_gt_pm:
    - shard-glk:          [ABORT][37] ([i915#6217]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk1/igt@i915_selftest@live@late_gt_pm.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@i915_selftest@live@late_gt_pm.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
    - shard-apl:          [ABORT][39] ([i915#180]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [FAIL][41] ([i915#72]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][43] ([i915#2346]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
    - shard-glk:          [FAIL][45] ([i915#79]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html

  * igt@perf_pmu@idle@rcs0:
    - {shard-rkl}:        [FAIL][47] ([i915#4349]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@perf_pmu@idle@rcs0.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@perf_pmu@idle@rcs0.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [FAIL][49] ([i915#4275]) -> [SKIP][50] ([fdo#109271])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@i915_pm_dc@dc9-dpms.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-04-21 15:39 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-04-24 15:05   ` Kamil Konieczny
  2023-04-25  8:31   ` Kamil Konieczny
  1 sibling, 0 replies; 25+ messages in thread
From: Kamil Konieczny @ 2023-04-24 15:05 UTC (permalink / raw)
  To: igt-dev; +Cc: SanjuX Marikkar

Hi Sai,

below issues are unrelated to change in igt_runner,

Regards,
Kamil

On 2023-04-21 at 15:39:18 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev5)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13038_full -> IGTPW_8837_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8837_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8837_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
> 
> Participating hosts (8 -> 7)
> ------------------------------
> 
>   Missing    (1): shard-rkl0 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8837_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_module_load@reload-no-display:
>     - shard-snb:          [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-snb7/igt@i915_module_load@reload-no-display.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@i915_module_load@reload-no-display.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@lic@pipe-a-dp-1:
>     - shard-apl:          [TIMEOUT][3] ([i915#7173]) -> [TIMEOUT][4] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms_content_protection@lic@pipe-a-dp-1.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@device_reset@unbind-reset-rebind:
>     - {shard-dg1}:        NOTRUN -> [ABORT][5]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
> 
>   * igt@kms_rotation_crc@multiplane-rotation:
>     - {shard-rkl}:        [PASS][6] -> [ABORT][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8837_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][10] ([fdo#109271]) +49 similar issues
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3323])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>     - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>     - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2346])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 
>   * igt@kms_flip@2x-nonexisting-fb:
>     - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271]) +34 similar issues
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_flip@2x-nonexisting-fb.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate:
>     - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +34 similar issues
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html
> 
>   * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>     - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
>     - {shard-rkl}:        [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
> 
>   * igt@gem_eio@hibernate:
>     - {shard-dg1}:        [ABORT][21] ([i915#7975]) -> [PASS][22]
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-14/igt@gem_eio@hibernate.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-17/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - {shard-dg1}:        [FAIL][23] ([i915#5784]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@gem_eio@unwedge-stress.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-16/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-apl:          [FAIL][25] ([i915#2842]) -> [PASS][26]
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-glk:          [ABORT][27] ([i915#5566]) -> [PASS][28]
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@gen9_exec_parse@allowed-single.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@gen9_exec_parse@allowed-single.html
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - {shard-tglu}:       [SKIP][29] ([i915#4281]) -> [PASS][30]
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
>     - {shard-dg1}:        [FAIL][31] ([i915#3591]) -> [PASS][32] +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress:
>     - {shard-rkl}:        [SKIP][33] ([i915#1397]) -> [PASS][34] +1 similar issue
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
>     - {shard-dg1}:        [SKIP][35] ([i915#1397]) -> [PASS][36]
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@i915_selftest@live@late_gt_pm:
>     - shard-glk:          [ABORT][37] ([i915#6217]) -> [PASS][38]
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk1/igt@i915_selftest@live@late_gt_pm.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@i915_selftest@live@late_gt_pm.html
> 
>   * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
>     - shard-apl:          [ABORT][39] ([i915#180]) -> [PASS][40]
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
> 
>   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
>     - shard-glk:          [FAIL][41] ([i915#72]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>     - shard-glk:          [FAIL][43] ([i915#2346]) -> [PASS][44]
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
>     - shard-glk:          [FAIL][45] ([i915#79]) -> [PASS][46]
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
> 
>   * igt@perf_pmu@idle@rcs0:
>     - {shard-rkl}:        [FAIL][47] ([i915#4349]) -> [PASS][48]
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@perf_pmu@idle@rcs0.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@perf_pmu@idle@rcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - shard-apl:          [FAIL][49] ([i915#4275]) -> [SKIP][50] ([fdo#109271])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@i915_pm_dc@dc9-dpms.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
>   [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
>   [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
>   [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
>   [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>   [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
>   [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
>   [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>   [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
>   [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
>   [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
>   [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
>   [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
>   [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
>   [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
>   [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
>   [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
>   [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
>   [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
>   [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
>   [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
>   [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
>   [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
>   [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
>   [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>   [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
>   [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
>   [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
>   [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
>   [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
>   [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
>   [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
>   [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
>   [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
>   [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
>   [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
>   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
>   [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7263 -> IGTPW_8837
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
>   IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-04-21 15:39 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2023-04-24 15:05   ` Kamil Konieczny
@ 2023-04-25  8:31   ` Kamil Konieczny
  2023-04-25 13:05     ` Yedireswarapu, SaiX Nandan
  1 sibling, 1 reply; 25+ messages in thread
From: Kamil Konieczny @ 2023-04-25  8:31 UTC (permalink / raw)
  To: igt-dev; +Cc: SaiX Nandan Yedireswarapu, SanjuX Marikkar, RavitejaX Veesam

Hi Sai,

below change is not related to igt_runner,
could you supress them and respin tests ?

Regards,
Kamil
 
On 2023-04-21 at 15:39:18 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev5)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13038_full -> IGTPW_8837_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8837_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8837_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
> 
> Participating hosts (8 -> 7)
> ------------------------------
> 
>   Missing    (1): shard-rkl0 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8837_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_module_load@reload-no-display:
>     - shard-snb:          [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-snb7/igt@i915_module_load@reload-no-display.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@i915_module_load@reload-no-display.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@lic@pipe-a-dp-1:
>     - shard-apl:          [TIMEOUT][3] ([i915#7173]) -> [TIMEOUT][4] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms_content_protection@lic@pipe-a-dp-1.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@device_reset@unbind-reset-rebind:
>     - {shard-dg1}:        NOTRUN -> [ABORT][5]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
> 
>   * igt@kms_rotation_crc@multiplane-rotation:
>     - {shard-rkl}:        [PASS][6] -> [ABORT][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8837_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][10] ([fdo#109271]) +49 similar issues
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3323])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>     - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>     - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2346])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 
>   * igt@kms_flip@2x-nonexisting-fb:
>     - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271]) +34 similar issues
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_flip@2x-nonexisting-fb.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate:
>     - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +34 similar issues
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html
> 
>   * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>     - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
>     - {shard-rkl}:        [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
> 
>   * igt@gem_eio@hibernate:
>     - {shard-dg1}:        [ABORT][21] ([i915#7975]) -> [PASS][22]
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-14/igt@gem_eio@hibernate.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-17/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - {shard-dg1}:        [FAIL][23] ([i915#5784]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@gem_eio@unwedge-stress.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-16/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-apl:          [FAIL][25] ([i915#2842]) -> [PASS][26]
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-glk:          [ABORT][27] ([i915#5566]) -> [PASS][28]
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@gen9_exec_parse@allowed-single.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@gen9_exec_parse@allowed-single.html
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - {shard-tglu}:       [SKIP][29] ([i915#4281]) -> [PASS][30]
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
>     - {shard-dg1}:        [FAIL][31] ([i915#3591]) -> [PASS][32] +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress:
>     - {shard-rkl}:        [SKIP][33] ([i915#1397]) -> [PASS][34] +1 similar issue
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
>     - {shard-dg1}:        [SKIP][35] ([i915#1397]) -> [PASS][36]
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@i915_selftest@live@late_gt_pm:
>     - shard-glk:          [ABORT][37] ([i915#6217]) -> [PASS][38]
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk1/igt@i915_selftest@live@late_gt_pm.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@i915_selftest@live@late_gt_pm.html
> 
>   * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
>     - shard-apl:          [ABORT][39] ([i915#180]) -> [PASS][40]
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
> 
>   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
>     - shard-glk:          [FAIL][41] ([i915#72]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>     - shard-glk:          [FAIL][43] ([i915#2346]) -> [PASS][44]
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
>     - shard-glk:          [FAIL][45] ([i915#79]) -> [PASS][46]
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
> 
>   * igt@perf_pmu@idle@rcs0:
>     - {shard-rkl}:        [FAIL][47] ([i915#4349]) -> [PASS][48]
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@perf_pmu@idle@rcs0.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@perf_pmu@idle@rcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - shard-apl:          [FAIL][49] ([i915#4275]) -> [SKIP][50] ([fdo#109271])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@i915_pm_dc@dc9-dpms.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
>   [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
>   [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
>   [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
>   [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>   [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
>   [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
>   [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>   [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
>   [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
>   [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
>   [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
>   [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
>   [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
>   [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
>   [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
>   [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
>   [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
>   [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
>   [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
>   [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
>   [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
>   [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
>   [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
>   [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>   [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
>   [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
>   [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
>   [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
>   [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
>   [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
>   [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
>   [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
>   [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
>   [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
>   [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
>   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
>   [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7263 -> IGTPW_8837
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
>   IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html

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

* [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (13 preceding siblings ...)
  2023-04-21 15:39 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-04-25 12:53 ` Patchwork
  2023-04-25 12:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2023-04-25 18:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-04-25 12:53 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13038 -> IGTPW_8837
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_8837 need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (38 -> 35)
------------------------------

  Missing    (3): fi-kbl-soraka bat-mtlp-8 fi-snb-2520m 

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

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

### IGT changes ###

#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-kbl-8809g:       [ABORT][1] ([i915#8298]) -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_selftest@live@slpc:
    - bat-adln-1:         [DMESG-FAIL][3] ([i915#6997]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-adln-1/igt@i915_selftest@live@slpc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-adln-1/igt@i915_selftest@live@slpc.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-kbl-8809g:       [DMESG-FAIL][5] ([i915#8299]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@gt_pm:
    - fi-ivb-3770:        [PASS][7] -> [ABORT][8] ([i915#8385])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/fi-ivb-3770/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@migrate:
    - bat-atsm-1:         [PASS][9] -> [FAIL][10] ([i915#6268])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-atsm-1/igt@i915_selftest@live@migrate.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-atsm-1/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [PASS][11] -> [ABORT][12] ([i915#8384])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/bat-rpls-1/igt@i915_selftest@live@reset.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/bat-rpls-1/igt@i915_selftest@live@reset.html

  
#### Possible fixes ####

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

  
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298
  [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
  [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
  [i915#8385]: https://gitlab.freedesktop.org/drm/intel/issues/8385


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (14 preceding siblings ...)
  2023-04-25 12:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-04-25 12:53 ` Patchwork
  2023-04-25 18:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-04-25 12:53 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13038_full -> IGTPW_8837_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_8837_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

Participating hosts (8 -> 7)
------------------------------

  Missing    (1): shard-rkl0 

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

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

### IGT changes ###

#### Warnings ####

  * igt@kms_content_protection@lic@pipe-a-dp-1:
    - shard-apl:          [TIMEOUT][1] ([i915#7173]) -> [TIMEOUT][2] +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms_content_protection@lic@pipe-a-dp-1.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> [ABORT][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - {shard-rkl}:        [PASS][4] -> [ABORT][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][6] -> [FAIL][7] ([i915#2842])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> [SKIP][8] ([fdo#109271]) +49 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3323])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [PASS][10] -> [ABORT][11] ([i915#8393])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-snb7/igt@i915_module_load@reload-no-display.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2346])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271]) +34 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +34 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - {shard-rkl}:        [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@gem_eio@hibernate:
    - {shard-dg1}:        [ABORT][21] ([i915#7975]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-14/igt@gem_eio@hibernate.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-17/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - {shard-dg1}:        [FAIL][23] ([i915#5784]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@gem_eio@unwedge-stress.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-16/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [FAIL][25] ([i915#2842]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [ABORT][27] ([i915#5566]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@gen9_exec_parse@allowed-single.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-tglu}:       [SKIP][29] ([i915#4281]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - {shard-dg1}:        [FAIL][31] ([i915#3591]) -> [PASS][32] +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - {shard-rkl}:        [SKIP][33] ([i915#1397]) -> [PASS][34] +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - {shard-dg1}:        [SKIP][35] ([i915#1397]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_selftest@live@late_gt_pm:
    - shard-glk:          [ABORT][37] ([i915#6217]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk1/igt@i915_selftest@live@late_gt_pm.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@i915_selftest@live@late_gt_pm.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
    - shard-apl:          [ABORT][39] ([i915#180]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [FAIL][41] ([i915#72]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][43] ([i915#2346]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
    - shard-glk:          [FAIL][45] ([i915#79]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html

  * igt@perf_pmu@idle@rcs0:
    - {shard-rkl}:        [FAIL][47] ([i915#4349]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@perf_pmu@idle@rcs0.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@perf_pmu@idle@rcs0.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [FAIL][49] ([i915#4275]) -> [SKIP][50] ([fdo#109271])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@i915_pm_dc@dc9-dpms.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8393]: https://gitlab.freedesktop.org/drm/intel/issues/8393


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-04-25  8:31   ` Kamil Konieczny
@ 2023-04-25 13:05     ` Yedireswarapu, SaiX Nandan
  0 siblings, 0 replies; 25+ messages in thread
From: Yedireswarapu, SaiX Nandan @ 2023-04-25 13:05 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev; +Cc: Marikkar, SanjuX, Veesam, RavitejaX

Hi,

Issue re-reported, https://patchwork.freedesktop.org/series/114353/

Thanks,
Y Sai Nandan


-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com> 
Sent: Tuesday, April 25, 2023 2:01 PM
To: igt-dev@lists.freedesktop.org
Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Musial, Ewelina <ewelina.musial@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Marikkar, SanjuX <sanjux.marikkar@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev5)

Hi Sai,

below change is not related to igt_runner, could you supress them and respin tests ?

Regards,
Kamil
 
On 2023-04-21 at 15:39:18 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: runner: check disk limit at dumping kmsg (rev5)
> URL   : https://patchwork.freedesktop.org/series/114353/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13038_full -> IGTPW_8837_full 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_8837_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_8837_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
> 
> Participating hosts (8 -> 7)
> ------------------------------
> 
>   Missing    (1): shard-rkl0 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8837_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_module_load@reload-no-display:
>     - shard-snb:          [PASS][1] -> [ABORT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-snb7/igt@i915_module_load@reload-no-display.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@i91
> 5_module_load@reload-no-display.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@lic@pipe-a-dp-1:
>     - shard-apl:          [TIMEOUT][3] ([i915#7173]) -> [TIMEOUT][4] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms
> _content_protection@lic@pipe-a-dp-1.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@device_reset@unbind-reset-rebind:
>     - {shard-dg1}:        NOTRUN -> [ABORT][5]
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@d
> evice_reset@unbind-reset-rebind.html
> 
>   * igt@kms_rotation_crc@multiplane-rotation:
>     - {shard-rkl}:        [PASS][6] -> [ABORT][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation.html
>    [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@km
> s_rotation_crc@multiplane-rotation.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8837_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem
> _exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][10] ([fdo#109271]) +49 similar issues
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem
> _render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3323])
>    [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem
> _userptr_blits@dmabuf-sync.html
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) +1 similar issue
>    [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i91
> 5_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>     - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +1 similar issue
>    [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@kms
> _ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>     - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2346])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>    [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk3/igt@kms
> _cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 
>   * igt@kms_flip@2x-nonexisting-fb:
>     - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271]) +34 similar issues
>    [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms
> _flip@2x-nonexisting-fb.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate:
>     - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +34 similar issues
>    [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb5/igt@kms
> _flip@2x-plain-flip-fb-recreate.html
> 
>   * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>     - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658])
>    [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms
> _psr2_sf@overlay-plane-move-continuous-sf.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
>     - {shard-rkl}:        [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>    [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@dr
> m_fdinfo@most-busy-idle-check-all@rcs0.html
> 
>   * igt@gem_eio@hibernate:
>     - {shard-dg1}:        [ABORT][21] ([i915#7975]) -> [PASS][22]
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-14/igt@gem_eio@hibernate.html
>    [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-17/igt@g
> em_eio@hibernate.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - {shard-dg1}:        [FAIL][23] ([i915#5784]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@gem_eio@unwedge-stress.html
>    [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-16/igt@g
> em_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-apl:          [FAIL][25] ([i915#2842]) -> [PASS][26]
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
>    [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@gem
> _exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-glk:          [ABORT][27] ([i915#5566]) -> [PASS][28]
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@gen9_exec_parse@allowed-single.html
>    [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@gen
> 9_exec_parse@allowed-single.html
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - {shard-tglu}:       [SKIP][29] ([i915#4281]) -> [PASS][30]
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
>    [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-tglu-2/igt@i
> 915_pm_dc@dc9-dpms.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
>     - {shard-dg1}:        [FAIL][31] ([i915#3591]) -> [PASS][32] +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
>    [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i
> 915_pm_rc6_residency@rc6-idle@vcs0.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress:
>     - {shard-rkl}:        [SKIP][33] ([i915#1397]) -> [PASS][34] +1 similar issue
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
>    [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-7/igt@i9
> 15_pm_rpm@modeset-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
>     - {shard-dg1}:        [SKIP][35] ([i915#1397]) -> [PASS][36]
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
>    [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i
> 915_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@i915_selftest@live@late_gt_pm:
>     - shard-glk:          [ABORT][37] ([i915#6217]) -> [PASS][38]
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk1/igt@i915_selftest@live@late_gt_pm.html
>    [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@i91
> 5_selftest@live@late_gt_pm.html
> 
>   * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
>     - shard-apl:          [ABORT][39] ([i915#180]) -> [PASS][40]
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
>    [40]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms
> _cursor_crc@cursor-suspend@pipe-a-dp-1.html
> 
>   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
>     - shard-glk:          [FAIL][41] ([i915#72]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
>    [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms
> _cursor_legacy@2x-long-flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>     - shard-glk:          [FAIL][43] ([i915#2346]) -> [PASS][44]
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>    [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms
> _cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
>     - shard-glk:          [FAIL][45] ([i915#79]) -> [PASS][46]
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
>    [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms
> _flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
> 
>   * igt@perf_pmu@idle@rcs0:
>     - {shard-rkl}:        [FAIL][47] ([i915#4349]) -> [PASS][48]
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@perf_pmu@idle@rcs0.html
>    [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@pe
> rf_pmu@idle@rcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - shard-apl:          [FAIL][49] ([i915#4275]) -> [SKIP][50] ([fdo#109271])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
>    [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@i91
> 5_pm_dc@dc9-dpms.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
>   [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
>   [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
>   [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
>   [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>   [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
>   [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
>   [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>   [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
>   [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
>   [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
>   [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
>   [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
>   [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
>   [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
>   [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
>   [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
>   [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
>   [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
>   [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
>   [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
>   [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
>   [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
>   [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
>   [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>   [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
>   [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
>   [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
>   [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
>   [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
>   [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
>   [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
>   [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
>   [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
>   [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
>   [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
>   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
>   [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7263 -> IGTPW_8837
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
>   IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html

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

* [igt-dev] ✗ Fi.CI.IGT: failure for runner: check disk limit at dumping kmsg (rev5)
  2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
                   ` (15 preceding siblings ...)
  2023-04-25 12:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2023-04-25 18:37 ` Patchwork
  16 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2023-04-25 18:37 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: runner: check disk limit at dumping kmsg (rev5)
URL   : https://patchwork.freedesktop.org/series/114353/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13038_full -> IGTPW_8837_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8837_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8837_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

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

  Additional (1): shard-tglu0 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-apl:          [PASS][1] -> ([FAIL][2], [PASS][3])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html

  
#### Warnings ####

  * igt@kms_content_protection@lic@pipe-a-dp-1:
    - shard-apl:          [TIMEOUT][4] ([i915#7173]) -> ([TIMEOUT][5], [TIMEOUT][6]) +3 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms_content_protection@lic@pipe-a-dp-1.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@kms_content_protection@lic@pipe-a-dp-1.html

  
#### Suppressed ####

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

  * igt@device_reset@unbind-reset-rebind:
    - {shard-dg1}:        NOTRUN -> [ABORT][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html

  * igt@i915_selftest@live@gt_pm:
    - {shard-rkl}:        [PASS][8] -> ([PASS][9], [FAIL][10])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-3/igt@i915_selftest@live@gt_pm.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@i915_selftest@live@gt_pm.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - {shard-rkl}:        [PASS][11] -> [ABORT][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][13] -> ([FAIL][14], [PASS][15]) ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [PASS][16] -> ([PASS][17], [FAIL][18]) ([i915#644])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> ([SKIP][19], [SKIP][20]) ([fdo#109271]) +46 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> ([SKIP][21], [SKIP][22]) ([fdo#109271] / [i915#3323])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_wait@write-wait:
    - shard-apl:          NOTRUN -> [INCOMPLETE][23] ([i915#2295])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl1/igt@gem_wait@write-wait.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          [PASS][24] -> ([ABORT][25], [ABORT][26]) ([i915#8393])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-snb7/igt@i915_module_load@reload-no-display.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb7/igt@i915_module_load@reload-no-display.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-apl:          NOTRUN -> ([SKIP][27], [SKIP][28]) ([fdo#109271] / [i915#658]) +1 similar issue
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][29] ([fdo#109271]) +2 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> ([SKIP][30], [SKIP][31]) ([fdo#109271] / [i915#3886]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_color@ctm-0-25@pipe-b-vga-1:
    - shard-snb:          NOTRUN -> ([SKIP][32], [SKIP][33]) ([fdo#109271]) +14 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb5/igt@kms_color@ctm-0-25@pipe-b-vga-1.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb7/igt@kms_color@ctm-0-25@pipe-b-vga-1.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][34] -> ([FAIL][35], [FAIL][36]) ([i915#2346])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          [PASS][37] -> ([FAIL][38], [PASS][39]) ([i915#2346]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][40] -> ([FAIL][41], [PASS][42]) ([i915#4767])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
    - shard-glk:          [PASS][43] -> ([PASS][44], [FAIL][45]) ([i915#2122])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk7/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-apl:          NOTRUN -> ([SKIP][46], [SKIP][47]) ([fdo#109271]) +34 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
    - shard-snb:          NOTRUN -> [SKIP][48] ([fdo#109271]) +40 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-snb1/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-glk:          NOTRUN -> ([SKIP][49], [SKIP][50]) ([fdo#109271] / [i915#658])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - {shard-rkl}:        [FAIL][51] ([i915#7742]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@gem_eio@hibernate:
    - {shard-dg1}:        [ABORT][53] ([i915#7975]) -> ([PASS][54], [PASS][55])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-14/igt@gem_eio@hibernate.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-13/igt@gem_eio@hibernate.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-17/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - {shard-dg1}:        [FAIL][56] ([i915#5784]) -> ([PASS][57], [PASS][58])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-15/igt@gem_eio@unwedge-stress.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-16/igt@gem_eio@unwedge-stress.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-12/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [FAIL][59] ([i915#2842]) -> ([PASS][60], [PASS][61])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [ABORT][62] ([i915#5566]) -> ([PASS][63], [PASS][64])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@gen9_exec_parse@allowed-single.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@gen9_exec_parse@allowed-single.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk7/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_rc6_residency@rc6-idle@vecs0:
    - {shard-dg1}:        [FAIL][65] ([i915#3591]) -> ([PASS][66], [PASS][67]) +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - {shard-rkl}:        [SKIP][68] ([i915#1397]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - {shard-rkl}:        [SKIP][70] ([i915#1397]) -> ([PASS][71], [PASS][72])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_selftest@live@late_gt_pm:
    - shard-glk:          [ABORT][73] ([i915#6217]) -> ([PASS][74], [PASS][75])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk1/igt@i915_selftest@live@late_gt_pm.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk8/igt@i915_selftest@live@late_gt_pm.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk7/igt@i915_selftest@live@late_gt_pm.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
    - shard-apl:          [ABORT][76] ([i915#180]) -> ([PASS][77], [PASS][78])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [FAIL][79] ([i915#72]) -> ([PASS][80], [PASS][81])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][82] ([i915#2346]) -> ([PASS][83], [PASS][84])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
    - shard-glk:          [FAIL][85] ([i915#79]) -> ([PASS][86], [PASS][87])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html

  * igt@perf_pmu@idle@rcs0:
    - {shard-rkl}:        [FAIL][88] ([i915#4349]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-rkl-4/igt@perf_pmu@idle@rcs0.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-rkl-6/igt@perf_pmu@idle@rcs0.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [FAIL][90] ([i915#4275]) -> ([SKIP][91], [SKIP][92]) ([fdo#109271])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13038/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/shard-apl7/igt@i915_pm_dc@dc9-dpms.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178
  [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8393]: https://gitlab.freedesktop.org/drm/intel/issues/8393


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7263 -> IGTPW_8837
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13038: 6461cb037c9e5c9872a3b1843a6b0aa2f9a0016d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8837/index.html
  IGT_7263: a6bd8f415c4ec41b5a014c7db47e46c81ffd0074 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

end of thread, other threads:[~2023-04-25 18:37 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-27 14:27 [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Kamil Konieczny
2023-02-27 16:09 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: check disk limit at dumping kmsg (rev2) Patchwork
2023-02-27 22:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-02-28 20:11   ` Kamil Konieczny
2023-03-03 10:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-03-05  9:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-03-06 17:46 ` Patchwork
2023-03-07  0:02 ` Patchwork
2023-03-07 11:41 ` Patchwork
2023-04-19 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev3) Patchwork
2023-04-19 17:40   ` Kamil Konieczny
2023-04-20  9:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev4) Patchwork
2023-04-20 18:58   ` Kamil Konieczny
2023-04-21 14:20     ` Yedireswarapu, SaiX Nandan
2023-04-20 13:03 ` [igt-dev] [PATCH v2 i-g-t] runner: check disk limit at dumping kmsg Andrzej Hajda
2023-04-21  9:19 ` [igt-dev] ✗ Fi.CI.BAT: failure for runner: check disk limit at dumping kmsg (rev5) Patchwork
2023-04-21 13:51 ` Patchwork
2023-04-21 14:16 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-04-21 15:39 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-04-24 15:05   ` Kamil Konieczny
2023-04-25  8:31   ` Kamil Konieczny
2023-04-25 13:05     ` Yedireswarapu, SaiX Nandan
2023-04-25 12:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-04-25 12:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-04-25 18:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.