* [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload
@ 2024-01-30 22:37 Rodrigo Vivi
2024-01-30 23:32 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Rodrigo Vivi @ 2024-01-30 22:37 UTC (permalink / raw)
To: igt-dev; +Cc: Rodrigo Vivi
devcoredump holds a module reference, blocking the module removal.
It is intentional from the devcoredump perspective to keep the
log available even after the unbind/unprobe. However it blocks
our module removal here.
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
lib/igt_kmod.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 250ab2107..da44a7bca 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -323,6 +323,58 @@ static int igt_kmod_unload_r(struct kmod_module *kmod, unsigned int flags)
return err;
}
+#define MAX_PATH 256
+
+static void _igt_remove_devcoredump(const char *driver)
+{
+ char sysfspath[MAX_PATH];
+ DIR *dir;
+ char devcoredump[MAX_PATH];
+ FILE *data;
+ struct dirent *entry;
+
+ snprintf(sysfspath, sizeof(sysfspath),
+ "/sys/module/%s/drivers/pci:%s/", driver, driver);
+
+ /* Not a PCI module */
+ if(access(sysfspath, F_OK) == -1)
+ return;
+
+ dir = opendir(sysfspath);
+ igt_assert(dir);
+
+ while ((entry = readdir(dir)) != NULL) {
+ if (entry->d_type == DT_LNK && strcmp(entry->d_name, ".") != 0
+ && strcmp(entry->d_name, "..") != 0) {
+
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wformat-truncation"
+ snprintf(devcoredump, sizeof(devcoredump),
+ "%s/%s/devcoredump", sysfspath, entry->d_name);
+#pragma GCC diagnostic pop
+
+ igt_info("%s\n", devcoredump);
+
+ if (access(devcoredump, F_OK) != -1) {
+ igt_info("Removing devcoredump before module unload: %s\n",
+ devcoredump);
+
+ strcat(devcoredump, "/data");
+ data = fopen(devcoredump, "w");
+ igt_assert(data);
+
+ /*
+ * Write anything to devcoredump/data to
+ * force its deletion
+ */
+ fprintf(data, "1\n");
+ fclose(data);
+ }
+ }
+ }
+ closedir(dir);
+}
+
/**
* igt_kmod_unload:
* @mod_name: Module name.
@@ -341,6 +393,8 @@ igt_kmod_unload(const char *mod_name, unsigned int flags)
struct kmod_module *kmod;
int err;
+ _igt_remove_devcoredump(mod_name);
+
err = kmod_module_new_from_name(ctx, mod_name, &kmod);
if (err < 0) {
igt_debug("Could not use module %s (%s)\n", mod_name,
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Fi.CI.BAT: success for lib/igt_kmod: remove devcoredump before a PCI module unload 2024-01-30 22:37 [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload Rodrigo Vivi @ 2024-01-30 23:32 ` Patchwork 2024-01-31 0:38 ` ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-01-30 23:32 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7287 bytes --] == Series Details == Series: lib/igt_kmod: remove devcoredump before a PCI module unload URL : https://patchwork.freedesktop.org/series/129344/ State : success == Summary == CI Bug Log - changes from IGT_7699 -> IGTPW_10608 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/index.html Participating hosts (38 -> 35) ------------------------------ Missing (3): bat-dg2-8 fi-snb-2520m bat-mtlp-8 Known issues ------------ Here are the changes found in IGTPW_10608 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html - bat-jsl-1: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rps@basic-api: - bat-mtlp-6: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [PASS][6] -> [DMESG-FAIL][7] ([i915#10112]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [PASS][8] -> [DMESG-FAIL][9] ([i915#9500]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/bat-dg2-11/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-dg2-11/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9886]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-6: NOTRUN -> [SKIP][12] ([fdo#109285] / [i915#9792]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-1: NOTRUN -> [SKIP][13] ([fdo#109285]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#5274] / [i915#9792]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#4342] / [i915#5354] / [i915#9792]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@hang-read-crc: - bat-mtlp-6: NOTRUN -> [SKIP][16] ([i915#9792]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pm_backlight@basic-brightness: - bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#5354] / [i915#9792]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][18] ([i915#3555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#8809] / [i915#9792]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-mtlp-6: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#9792]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#3708]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/bat-mtlp-6/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10112]: https://gitlab.freedesktop.org/drm/intel/issues/10112 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9500]: https://gitlab.freedesktop.org/drm/intel/issues/9500 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/intel/issues/9792 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7699 -> IGTPW_10608 CI-20190529: 20190529 CI_DRM_14193: c655e0fd28045dbaa581d04bf7cc266eec1c3457 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/index.html IGT_7699: 7699 Testlist changes ---------------- -igt@kms_vrr@max-min == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/index.html [-- Attachment #2: Type: text/html, Size: 9039 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/igt_kmod: remove devcoredump before a PCI module unload 2024-01-30 22:37 [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload Rodrigo Vivi 2024-01-30 23:32 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-01-31 0:38 ` Patchwork 2024-01-31 1:07 ` ✓ CI.xeBAT: success " Patchwork 2024-02-01 23:14 ` [RFC] " Lucas De Marchi 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-01-31 0:38 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100279 bytes --] == Series Details == Series: lib/igt_kmod: remove devcoredump before a PCI module unload URL : https://patchwork.freedesktop.org/series/129344/ State : failure == Summary == CI Bug Log - changes from IGT_7699_full -> IGTPW_10608_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10608_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10608_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10608_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a2.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-tglu: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_10608_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +7 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-2/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +21 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@drm_fdinfo@busy@rcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3281]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-7/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-rkl: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1099]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb7/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][21] ([i915#10030] / [i915#7975] / [i915#8213]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#6344]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][27] ([i915#9606]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][28] ([i915#9606]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@gem_exec_capture@many-4k-incremental.html - shard-tglu: NOTRUN -> [FAIL][29] ([i915#9606]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][30] ([i915#2846]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][32] ([i915#2842]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][33] ([i915#2842]) +2 other tests fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-4/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][38] ([fdo#109313]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@rsvd2-dirt: - shard-rkl: NOTRUN -> [SKIP][39] ([fdo#109283]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][40] ([fdo#112283]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-tglu: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-6/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +13 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-15/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +15 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613] / [i915#7582]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk4/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-2/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-15/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4270]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-16/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271]) +157 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4885]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4079]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-2/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][71] ([fdo#110542]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3323]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][78] ([fdo#109289]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-2/igt@gen3_render_tiledx_blits.html - shard-rkl: NOTRUN -> [SKIP][79] ([fdo#109289]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][80] ([fdo#109289]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4881]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-2/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6227]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#6227]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][89] -> [INCOMPLETE][90] ([i915#10137] / [i915#9849]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][91] -> [INCOMPLETE][92] ([i915#10137] / [i915#9200] / [i915#9849]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][93] -> [WARN][94] ([i915#7356]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#8399]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#6590]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#109289]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6188]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][101] ([i915#9311]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@i915_selftest@mock@memory_region.html - shard-tglu: NOTRUN -> [DMESG-WARN][102] ([i915#9311]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3826]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-4/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#8709]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#8709]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#9531]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#1769]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5286]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111614] / [i915#3638]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111614]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [FAIL][119] ([i915#3743]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][120] -> [FAIL][121] ([i915#3743]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +14 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#110723]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111615]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#111615]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#2705]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#2705]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +27 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-7/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +31 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +9 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-12/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +15 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5354]) +33 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5354]) +93 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3742]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3742]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7828]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7828]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-2/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#111827]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111827]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@gamma: - shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111827]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +8 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@vga-edid-read: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7118]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3116]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#3116] / [i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][154] ([fdo#109279] / [i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8814]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8814]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3359]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3359]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4103]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274] / [i915#5354]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111825]) +15 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109274]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#9723]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#110189] / [i915#9723]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1: - shard-snb: NOTRUN -> [SKIP][168] ([fdo#109271] / [fdo#110189]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8588]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3804]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2065] / [i915#4854]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4854]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#1839]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#1839]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111825] / [i915#9934]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-14/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3637]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-3/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][182] ([fdo#109274] / [fdo#111767]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109274] / [fdo#111767] / [i915#3637]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][184] ([fdo#111767] / [i915#3637]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][185] ([fdo#109274]) +8 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109274] / [i915#3637]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8381]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8381]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#2672]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8810]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8708]) +20 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [PASS][198] -> [SKIP][199] ([fdo#109271]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109280] / [fdo#111767]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][201] ([fdo#111767] / [i915#5354]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][202] ([fdo#111825]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111825] / [i915#1825]) +39 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#10055]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3458]) +20 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8708]) +6 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][207] ([fdo#111767] / [i915#1825]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#9766]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#10070]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3023]) +26 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#110189]) +10 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111767] / [fdo#111825] / [i915#1825]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][214] ([fdo#109280]) +24 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#1825]) +13 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#9457]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#4816]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#6301]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg1: NOTRUN -> [SKIP][221] ([fdo#109289]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-15/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][222] ([i915#4573]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8821]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][224] ([i915#8292]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: [PASS][225] -> [FAIL][226] ([i915#8292]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9423]) +11 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9423]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#9423]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9423]) +23 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#5176]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#5176] / [i915#9423]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#5235]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#5235]) +9 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#5235]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#5235] / [i915#9423]) +11 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#10139]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][238] -> [FAIL][239] ([i915#9295]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#4281]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9519]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][242] -> [SKIP][243] ([i915#9519]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][244] -> [SKIP][245] ([i915#9519]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][246] ([fdo#109293]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-8/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4077]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#6524] / [i915#6805]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#9683]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][251] ([fdo#111068] / [i915#9683]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#4348]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#9683]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][254] ([fdo#111068] / [i915#9683]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][255] ([fdo#109642] / [fdo#111068] / [i915#9683]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#9685]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5289]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4235]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#5289]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][260] ([fdo#111615] / [i915#5289]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#4235] / [i915#5190]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#4235]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-dg2: [PASS][263] -> [DMESG-WARN][264] ([i915#10143]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-rkl: [PASS][265] -> [DMESG-WARN][266] ([i915#10143]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-dg1: [PASS][267] -> [DMESG-WARN][268] ([i915#10143]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono: - shard-snb: [PASS][269] -> [DMESG-WARN][270] ([i915#10143]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010: - shard-glk: [PASS][271] -> [DMESG-WARN][272] ([i915#10143] / [i915#10165]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#8623]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [FAIL][274] ([i915#9196]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#3555]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-19/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#9906]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][277] ([i915#9906]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#2437]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][279] ([fdo#109271] / [i915#2437]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7387]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: NOTRUN -> [FAIL][281] ([i915#4349]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][282] ([i915#4349]) +3 other tests fail [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][283] ([fdo#112283]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][284] ([i915#5793]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3708] / [i915#4077]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-2/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3708] / [i915#4077]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3708]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][288] ([fdo#109295] / [fdo#111656] / [i915#3708]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][289] ([fdo#109295]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-7/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3708]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#9917]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9917]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][293] ([i915#9779]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#2575]) +6 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-6/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#2575]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-12/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#2575]) +13 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-rkl: NOTRUN -> [SKIP][297] ([fdo#109315]) +14 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-snb: NOTRUN -> [SKIP][298] ([fdo#109271]) +41 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb7/igt@v3d/v3d_submit_csd@multi-and-single-sync.html - shard-tglu: NOTRUN -> [SKIP][299] ([fdo#109315] / [i915#2575]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-10/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#7711]) +11 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-1/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#7711]) +8 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#2575]) +6 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-5/igt@vc4/vc4_tiling@set-bad-flags.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#7711]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-4/igt@vc4/vc4_wait_bo@used-bo-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#7711]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@drm_fdinfo@context-close-stress: - shard-rkl: [ABORT][305] ([i915#10154]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@drm_fdinfo@context-close-stress.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@drm_fdinfo@context-close-stress.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][307] ([i915#6268]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@kms: - shard-dg2: [FAIL][309] ([i915#5784]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@gem_eio@kms.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-5/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][311] ([i915#5784]) -> [PASS][312] +1 other test pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-17/igt@gem_eio@unwedge-stress.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: [FAIL][313] ([i915#2842]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk8/igt@gem_exec_fair@basic-none-rrul@rcs0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][315] ([i915#2842]) -> [PASS][316] +3 other tests pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][317] ([i915#2842]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_gttfill@engines@vcs0: - shard-glk: [INCOMPLETE][319] ([i915#10137]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk5/igt@gem_exec_gttfill@engines@vcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk3/igt@gem_exec_gttfill@engines@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][321] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][323] ([i915#3591]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][325] ([i915#10031]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html - shard-snb: [INCOMPLETE][327] ([i915#10044]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@basic: - shard-dg1: [DMESG-WARN][329] ([i915#4423]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-16/igt@kms_addfb_basic@basic.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-12/igt@kms_addfb_basic@basic.html * igt@kms_cursor_crc@cursor-sliding-64x64@pipe-d-edp-1: - shard-mtlp: [FAIL][331] ([i915#10061]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-d-edp-1.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][333] ([i915#2346]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][335] ([i915#79]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-snb: [SKIP][337] ([fdo#109271]) -> [PASS][338] +9 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg1: [DMESG-WARN][339] ([i915#1982] / [i915#4423]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][341] ([i915#9519]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [FAIL][343] ([i915#8717]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-2/igt@kms_pm_rpm@i2c.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-3/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][345] ([i915#9519]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html * {igt@kms_psr@psr2-cursor-plane-move@edp-1}: - shard-mtlp: [FAIL][347] -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-1/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-5/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: [ABORT][349] ([i915#8875]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg1: [DMESG-WARN][351] ([i915#10143]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-glk: [DMESG-WARN][353] ([i915#10143] / [i915#10165]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-glk5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888: - shard-dg2: [DMESG-WARN][355] ([i915#10143]) -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888: - shard-snb: [DMESG-WARN][357] ([i915#10143]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010: - shard-rkl: [DMESG-WARN][359] ([i915#10143]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][361] ([i915#9196]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1: - shard-tglu: [ABORT][363] -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [FAIL][365] ([i915#4349]) -> [PASS][366] +4 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@bcs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg1: [FAIL][367] ([i915#4349]) -> [PASS][368] +3 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vcs0.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-tglu: [INCOMPLETE][369] ([i915#10042] / [i915#10137]) -> [WARN][370] ([i915#2658]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@gem_pread@exhaustion.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-6/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: [WARN][371] ([i915#2658]) -> [INCOMPLETE][372] ([i915#10042] / [i915#10137]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [INCOMPLETE][373] ([i915#8816]) -> [SKIP][374] ([fdo#109271]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb7/igt@kms_content_protection@atomic-dpms.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@mei-interface: - shard-snb: [SKIP][375] ([fdo#109271]) -> [INCOMPLETE][376] ([i915#9878]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb1/igt@kms_content_protection@mei-interface.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb7/igt@kms_content_protection@mei-interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][377] ([i915#3955]) -> [SKIP][378] ([fdo#110189] / [i915#3955]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][379] ([fdo#110189] / [i915#3955]) -> [SKIP][380] ([i915#3955]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][381] ([fdo#109271]) -> [SKIP][382] ([fdo#109271] / [fdo#111767]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][383] ([i915#3361]) -> [FAIL][384] ([i915#9295]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-rkl: [FAIL][385] ([i915#10136]) -> [DMESG-FAIL][386] ([i915#10143]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-rkl-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-dg1: [FAIL][387] ([i915#10136]) -> [DMESG-FAIL][388] ([i915#10143]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-dg2: [FAIL][389] ([i915#10136]) -> [DMESG-FAIL][390] ([i915#10143]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/shard-dg2-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10044]: https://gitlab.freedesktop.org/drm/intel/issues/10044 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10061]: https://gitlab.freedesktop.org/drm/intel/issues/10061 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#10154]: https://gitlab.freedesktop.org/drm/intel/issues/10154 [i915#10165]: https://gitlab.freedesktop.org/drm/intel/issues/10165 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [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#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#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [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#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [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/7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/index.html [-- Attachment #2: Type: text/html, Size: 121996 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for lib/igt_kmod: remove devcoredump before a PCI module unload 2024-01-30 22:37 [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload Rodrigo Vivi 2024-01-30 23:32 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-01-31 0:38 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-31 1:07 ` Patchwork 2024-02-01 23:14 ` [RFC] " Lucas De Marchi 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-01-31 1:07 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1052 bytes --] == Series Details == Series: lib/igt_kmod: remove devcoredump before a PCI module unload URL : https://patchwork.freedesktop.org/series/129344/ State : success == Summary == CI Bug Log - changes from XEIGT_7699_BAT -> XEIGTPW_10608_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 2) ------------------------------ Missing (2): bat-pvc-2 bat-dg2-oem2 Changes ------- No changes found Build changes ------------- * IGT: IGT_7699 -> IGTPW_10608 * Linux: xe-699-c655e0fd28045dbaa581d04bf7cc266eec1c3457 -> xe-705-3d244fce99b65e012c4409d8a22bb9168c41f101 IGTPW_10608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10608/index.html IGT_7699: 7699 xe-699-c655e0fd28045dbaa581d04bf7cc266eec1c3457: c655e0fd28045dbaa581d04bf7cc266eec1c3457 xe-705-3d244fce99b65e012c4409d8a22bb9168c41f101: 3d244fce99b65e012c4409d8a22bb9168c41f101 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10608/index.html [-- Attachment #2: Type: text/html, Size: 1611 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload 2024-01-30 22:37 [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload Rodrigo Vivi ` (2 preceding siblings ...) 2024-01-31 1:07 ` ✓ CI.xeBAT: success " Patchwork @ 2024-02-01 23:14 ` Lucas De Marchi 2024-03-08 22:20 ` Rodrigo Vivi 3 siblings, 1 reply; 6+ messages in thread From: Lucas De Marchi @ 2024-02-01 23:14 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev On Tue, Jan 30, 2024 at 05:37:02PM -0500, Rodrigo Vivi wrote: >devcoredump holds a module reference, blocking the module removal. > >It is intentional from the devcoredump perspective to keep the >log available even after the unbind/unprobe. However it blocks >our module removal here. > >Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> >Cc: José Roberto de Souza <jose.souza@intel.com> >Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> >--- > lib/igt_kmod.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 54 insertions(+) > >diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >index 250ab2107..da44a7bca 100644 >--- a/lib/igt_kmod.c >+++ b/lib/igt_kmod.c >@@ -323,6 +323,58 @@ static int igt_kmod_unload_r(struct kmod_module *kmod, unsigned int flags) > return err; > } > >+#define MAX_PATH 256 just use PATH_MAX? it's more than this and should be sufficient for these sysfs paths >+ >+static void _igt_remove_devcoredump(const char *driver) >+{ >+ char sysfspath[MAX_PATH]; >+ DIR *dir; >+ char devcoredump[MAX_PATH]; >+ FILE *data; >+ struct dirent *entry; >+ >+ snprintf(sysfspath, sizeof(sysfspath), >+ "/sys/module/%s/drivers/pci:%s/", driver, driver); "/sys/bus/pci/drivers/%s", driver I´d also save the return value so you can 1) check if it was truncated, 2) do something like `char *entry = sysfspath + len`, so you don't have to keep printing the prefix below. >+ >+ /* Not a PCI module */ >+ if(access(sysfspath, F_OK) == -1) >+ return; coding style >+ >+ dir = opendir(sysfspath); >+ igt_assert(dir); >+ >+ while ((entry = readdir(dir)) != NULL) { >+ if (entry->d_type == DT_LNK && strcmp(entry->d_name, ".") != 0 >+ && strcmp(entry->d_name, "..") != 0) { invert the comparison and do a "continue;" ? It would drop the indent a little bit. >+ >+#pragma GCC diagnostic push >+#pragma GCC diagnostic ignored "-Wformat-truncation" >+ snprintf(devcoredump, sizeof(devcoredump), >+ "%s/%s/devcoredump", sysfspath, entry->d_name); >+#pragma GCC diagnostic pop instead of ignoring the truncation, simply check the return? As per above you could do: ret = snprintf(entry, sizeof(sysfspath) - prefixlen, "/%s/devcoredump", entry->d_name); then check ret < sizeof(sysfspath) - prefixlen if you follow this, then you should use sysfspath everywhere below rather than devcoredump. >+ >+ igt_info("%s\n", devcoredump); >+ >+ if (access(devcoredump, F_OK) != -1) { >+ igt_info("Removing devcoredump before module unload: %s\n", >+ devcoredump); >+ >+ strcat(devcoredump, "/data"); could we just do that above and check if we have a devcoredump/data? I'd reword the commit message to say "drop" instead of remove. The reason I came here to review was that you had "igt_kmod: remove devcoredump ..." and I thought you were talking about a **module** called devcoredump. >+ data = fopen(devcoredump, "w"); >+ igt_assert(data); >+ >+ /* >+ * Write anything to devcoredump/data to >+ * force its deletion >+ */ >+ fprintf(data, "1\n"); >+ fclose(data); >+ } >+ } >+ } >+ closedir(dir); >+} >+ > /** > * igt_kmod_unload: > * @mod_name: Module name. >@@ -341,6 +393,8 @@ igt_kmod_unload(const char *mod_name, unsigned int flags) > struct kmod_module *kmod; > int err; > >+ _igt_remove_devcoredump(mod_name); what's the _ for? Also as I said above please s/remove/drop/ However I wonder if we shouldn't **dump** and make it available as output, just like we save the dmesg. Lucas De Marchi ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload 2024-02-01 23:14 ` [RFC] " Lucas De Marchi @ 2024-03-08 22:20 ` Rodrigo Vivi 0 siblings, 0 replies; 6+ messages in thread From: Rodrigo Vivi @ 2024-03-08 22:20 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev On Thu, Feb 01, 2024 at 05:14:58PM -0600, Lucas De Marchi wrote: > On Tue, Jan 30, 2024 at 05:37:02PM -0500, Rodrigo Vivi wrote: > > devcoredump holds a module reference, blocking the module removal. > > > > It is intentional from the devcoredump perspective to keep the > > log available even after the unbind/unprobe. However it blocks > > our module removal here. > > > > Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > > Cc: José Roberto de Souza <jose.souza@intel.com> > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > --- > > lib/igt_kmod.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 54 insertions(+) > > > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > > index 250ab2107..da44a7bca 100644 > > --- a/lib/igt_kmod.c > > +++ b/lib/igt_kmod.c > > @@ -323,6 +323,58 @@ static int igt_kmod_unload_r(struct kmod_module *kmod, unsigned int flags) > > return err; > > } > > > > +#define MAX_PATH 256 > > just use PATH_MAX? it's more than this and should be sufficient for > these sysfs paths > > > + > > +static void _igt_remove_devcoredump(const char *driver) > > +{ > > + char sysfspath[MAX_PATH]; > > + DIR *dir; > > + char devcoredump[MAX_PATH]; > > + FILE *data; > > + struct dirent *entry; > > + > > + snprintf(sysfspath, sizeof(sysfspath), > > + "/sys/module/%s/drivers/pci:%s/", driver, driver); > > "/sys/bus/pci/drivers/%s", driver > > I´d also save the return value so you can 1) check if it was truncated, > 2) do something like `char *entry = sysfspath + len`, > so you don't have to keep printing the prefix below. > > > + > > + /* Not a PCI module */ > > + if(access(sysfspath, F_OK) == -1) > > + return; > > coding style > > > + > > + dir = opendir(sysfspath); > > + igt_assert(dir); > > + > > + while ((entry = readdir(dir)) != NULL) { > > + if (entry->d_type == DT_LNK && strcmp(entry->d_name, ".") != 0 > > + && strcmp(entry->d_name, "..") != 0) { > > invert the comparison and do a "continue;" ? It would drop the indent a > little bit. > > > + > > +#pragma GCC diagnostic push > > +#pragma GCC diagnostic ignored "-Wformat-truncation" > > + snprintf(devcoredump, sizeof(devcoredump), > > + "%s/%s/devcoredump", sysfspath, entry->d_name); > > +#pragma GCC diagnostic pop > > instead of ignoring the truncation, simply check the return? As per > above you could do: > > ret = snprintf(entry, sizeof(sysfspath) - prefixlen, > "/%s/devcoredump", entry->d_name); > > then check ret < sizeof(sysfspath) - prefixlen > > if you follow this, then you should use sysfspath everywhere below > rather than devcoredump. > > > + > > + igt_info("%s\n", devcoredump); > > + > > + if (access(devcoredump, F_OK) != -1) { > > + igt_info("Removing devcoredump before module unload: %s\n", > > + devcoredump); > > + > > + strcat(devcoredump, "/data"); > > could we just do that above and check if we have a devcoredump/data? > > > I'd reword the commit message to say "drop" instead of remove. The > reason I came here to review was that you had > "igt_kmod: remove devcoredump ..." and I thought you were talking about a > **module** called devcoredump. > > > > + data = fopen(devcoredump, "w"); > > + igt_assert(data); > > + > > + /* > > + * Write anything to devcoredump/data to > > + * force its deletion > > + */ > > + fprintf(data, "1\n"); > > + fclose(data); > > + } > > + } > > + } > > + closedir(dir); > > +} > > + > > /** > > * igt_kmod_unload: > > * @mod_name: Module name. > > @@ -341,6 +393,8 @@ igt_kmod_unload(const char *mod_name, unsigned int flags) > > struct kmod_module *kmod; > > int err; > > > > + _igt_remove_devcoredump(mod_name); > > what's the _ for? Also as I said above please s/remove/drop/ > > However I wonder if we shouldn't **dump** and make it available as > output, just like we save the dmesg. all the suggestions above accepted, except the dump here. dmesg dump is at the runner/executor. We might need to collect that there or add the udev rule, but I believe it is orthogonal to the goal of this patch that is to unblock the module reload/unload after a hang has happened. Thank you so much for all the suggestions. > > Lucas De Marchi ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-03-08 22:20 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-30 22:37 [RFC] lib/igt_kmod: remove devcoredump before a PCI module unload Rodrigo Vivi 2024-01-30 23:32 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-01-31 0:38 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-31 1:07 ` ✓ CI.xeBAT: success " Patchwork 2024-02-01 23:14 ` [RFC] " Lucas De Marchi 2024-03-08 22:20 ` Rodrigo Vivi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox