* [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded
@ 2023-10-19 9:15 Mauro Carvalho Chehab
2023-10-23 16:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Mauro Carvalho Chehab @ 2023-10-19 9:15 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
For i915 devices are used, there's a glue with snd_hda_intel.
Currently, such glue requires that the audio driver to be unused
and removed before being able to remove the i915 driver.
There is already a logic at igt library to do it the right way,
but device_reset currently doesn't use.
Also, the logic is hardcoded to work only with Haswell, Broadwell
and DG1.
Change the logic to use the proper logic to remove such
module using the library.
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
tests/device_reset.c | 47 ++++++--------------------------------------
1 file changed, 6 insertions(+), 41 deletions(-)
diff --git a/tests/device_reset.c b/tests/device_reset.c
index 9ebd479dfefa..ef08164aad41 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -65,7 +65,7 @@ struct device_fds {
int slot_dir; /* pci hotplug slots fd */
} fds;
char dev_bus_addr[DEV_BUS_ADDR_LEN];
- bool snd_unload;
+ char *snd_driver;
};
static int __open_sysfs_dir(int fd, const char* path)
@@ -188,7 +188,6 @@ static void init_device_fds(struct device_fds *dev)
{
char dev_path[PATH_MAX];
char *addr_pos;
- uint32_t devid;
igt_debug("open device\n");
/**
@@ -198,18 +197,9 @@ static void init_device_fds(struct device_fds *dev)
*/
dev->fds.dev = __drm_open_driver(DRIVER_ANY);
igt_assert_fd(dev->fds.dev);
- if (is_i915_device(dev->fds.dev)) {
+ if (is_i915_device(dev->fds.dev))
igt_require_gem(dev->fds.dev);
- devid = intel_get_drm_devid(dev->fds.dev);
- if ((IS_HASWELL(devid) || IS_BROADWELL(devid) ||
- IS_DG1(devid)) &&
- (igt_kmod_is_loaded("snd_hda_intel"))) {
- igt_debug("Enable WA to unload snd driver\n");
- dev->snd_unload = true;
- }
- }
-
igt_assert(device_sysfs_path(dev->fds.dev, dev_path));
addr_pos = strrchr(dev_path, '/');
igt_assert(addr_pos);
@@ -312,33 +302,8 @@ static bool is_sysfs_cold_reset_supported(int slot_fd)
/* Unbind the driver from the device */
static void driver_unbind(struct device_fds *dev)
{
- /**
- * FIXME: Unbinding the i915 driver on affected platforms with
- * audio results in a kernel WARN on "i915 raw-wakerefs=1
- * wakelocks=1 on cleanup". The below CI friendly user level
- * workaround to unload and de-couple audio from IGT testing,
- * prevents the warning from appearing. Drop this hack as soon
- * as this is fixed in the kernel. unbind/re-bind validation
- * on audio side is not robust and we could have potential
- * failures blocking display CI, currently this seems to the
- * safest and easiest way out.
- */
- if (dev->snd_unload) {
- igt_terminate_process(SIGTERM, "alsactl");
-
- /* unbind snd_hda_intel */
- kick_snd_hda_intel();
-
- if (igt_kmod_unload("snd_hda_intel", 0)) {
- dev->snd_unload = false;
- igt_warn("Could not unload snd_hda_intel\n");
- igt_kmod_list_loaded();
- igt_lsof("/dev/snd");
- igt_skip("Audio is in use, skipping\n");
- } else {
- igt_info("Preventively unloaded snd_hda_intel\n");
- }
- }
+ if (is_i915_device(dev->fds.dev))
+ igt_audio_driver_unload(&dev->snd_driver);
igt_debug("unbind the driver from the device\n");
igt_assert(igt_sysfs_set(dev->fds.drv_dir, "unbind",
@@ -352,8 +317,8 @@ static void driver_bind(struct device_fds *dev)
igt_abort_on_f(!igt_sysfs_set(dev->fds.drv_dir, "bind",
dev->dev_bus_addr), "driver rebind failed");
- if (dev->snd_unload)
- igt_kmod_load("snd_hda_intel", NULL);
+ if (dev->snd_driver)
+ igt_kmod_load(dev->snd_driver, NULL);
}
/* Initiate device reset */
--
2.41.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab @ 2023-10-23 16:24 ` Patchwork 2023-10-23 16:51 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-23 16:24 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5637 bytes --] == Series Details == Series: tests/device_reset: fix logic to unbind when snd_hda_intel is loaded URL : https://patchwork.freedesktop.org/series/125339/ State : success == Summary == CI Bug Log - changes from CI_DRM_13777 -> IGTPW_10027 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/index.html Participating hosts (36 -> 36) ------------------------------ Additional (2): fi-skl-guc bat-kbl-2 Missing (2): fi-kbl-soraka fi-hsw-4770 Known issues ------------ Here are the changes found in IGTPW_10027 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_10027/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-skl-guc: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/fi-skl-guc/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][5] ([fdo#109271]) +39 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][7] -> [DMESG-FAIL][8] ([i915#5334]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-skl-guc: NOTRUN -> [SKIP][10] ([fdo#109271]) +12 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/fi-skl-guc/igt@kms_dsc@dsc-basic.html - bat-jsl-1: NOTRUN -> [SKIP][11] ([i915#3555]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][12] ([fdo#109285]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - fi-skl-guc: NOTRUN -> [FAIL][13] ([IGT#3]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/fi-skl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#1845] / [i915#9197]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-dg2-8/igt@kms_pipe_crc_basic@suspend-read-crc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-8: [INCOMPLETE][15] ([i915#9275]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/bat-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/bat-dg2-8/igt@gem_exec_suspend@basic-s0@lmem0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7549 -> IGTPW_10027 CI-20190529: 20190529 CI_DRM_13777: 1b4fd688d213556268c50f853746c94c9a0cfee7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10027: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/index.html IGT_7549: bc3314b187318a4238c6fae583770b389afa83c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/index.html [-- Attachment #2: Type: text/html, Size: 6853 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab 2023-10-23 16:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-10-23 16:51 ` Patchwork 2023-10-23 22:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-23 16:51 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2107 bytes --] == Series Details == Series: tests/device_reset: fix logic to unbind when snd_hda_intel is loaded URL : https://patchwork.freedesktop.org/series/125339/ State : success == Summary == CI Bug Log - changes from XEIGT_7549_BAT -> XEIGTPW_10027_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10027_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7549/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10027/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html #### Possible fixes #### * {igt@xe_create@create-execqueues-noleak}: - bat-adlp-7: [FAIL][3] ([Intel XE#524]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7549/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10027/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7549 -> IGTPW_10027 IGTPW_10027: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/index.html IGT_7549: bc3314b187318a4238c6fae583770b389afa83c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-442-a0a80950176b39dbc76f8faa92fddf6caaa06191: a0a80950176b39dbc76f8faa92fddf6caaa06191 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10027/index.html [-- Attachment #2: Type: text/html, Size: 2703 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab 2023-10-23 16:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-10-23 16:51 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-10-23 22:56 ` Patchwork 2023-10-24 16:22 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-23 22:56 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 85639 bytes --] == Series Details == Series: tests/device_reset: fix logic to unbind when snd_hda_intel is loaded URL : https://patchwork.freedesktop.org/series/125339/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13777_full -> IGTPW_10027_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10027_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10027_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10027/index.html Participating hosts (12 -> 13) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10027_full: ### IGT changes ### #### Possible regressions #### * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-7/igt@kms_psr@psr2_cursor_mmap_cpu.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@kms_psr@psr2_cursor_mmap_cpu.html Known issues ------------ Here are the changes found in IGTPW_10027_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-16/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +30 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3281]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-8/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3281]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@gem_basic@multigpu-create-close.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@gem_create@create-ext-set-pat.html * igt@gem_create@hog-create@smem0: - shard-mtlp: NOTRUN -> [FAIL][18] ([i915#8758]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-7/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-16/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#6334]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-14/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][36] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +4 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][39] ([fdo#109313]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-mtlp: [PASS][40] -> [DMESG-FAIL][41] ([i915#8962]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-8/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][44] ([fdo#112283]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +11 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [PASS][48] -> [FAIL][49] ([i915#9051]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@vcs0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@massive: - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl1/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#8289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#284]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-15/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +19 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-12/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-2/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][68] ([i915#2658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-5/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-rkl: NOTRUN -> [FAIL][82] ([i915#3318]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg1: NOTRUN -> [SKIP][83] ([fdo#109289]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-19/igt@gen3_render_linear_blits.html - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#109289]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-offset: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#109289]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-6/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@allowed-all: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +6 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@gen9_exec_parse@shadow-peek.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#8456]) +2 other tests fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][91] ([i915#7069]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][92] ([i915#9559]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][93] ([i915#7036]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#8399]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][95] ([fdo#109289]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg1: NOTRUN -> [SKIP][96] ([fdo#109293] / [fdo#109506]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-14/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#6245]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@i915_query@hwconfig_table.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_10027/shard-dg2-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109303]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][103] -> [DMESG-FAIL][104] ([i915#5334]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][105] ([i915#9311]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4215] / [i915#5190]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][108] ([i915#8247]) +3 other tests fail [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][109] ([i915#8247]) +3 other tests fail [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6228]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#111614]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/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-64bpp-rotate-0: - shard-mtlp: [PASS][117] -> [FAIL][118] ([i915#5138]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][119] ([fdo#111614] / [i915#3638]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111614]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +20 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111615]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][124] -> [FAIL][125] ([i915#3743]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][126] ([fdo#110723]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][127] ([fdo#111615]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-19/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#111615]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#2705]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3742]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3742]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7213]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg1: NOTRUN -> [SKIP][135] ([fdo#111827]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-19/igt@kms_chamelium_color@ctm-0-25.html - shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111827]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-7/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111827]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#7828]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#7828]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +12 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#7828]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3116] / [i915#3299]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][146] ([i915#7173]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#6944]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8814]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3359]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-apl: NOTRUN -> [SKIP][155] ([fdo#109271] / [fdo#111767]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111767] / [fdo#111825]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#5354]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][158] -> [FAIL][159] ([i915#2346]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#4103]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4103] / [i915#4213]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#9227]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#9226] / [i915#9261]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#8588]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#8812]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-14/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3955]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][171] ([fdo#109274] / [i915#3637]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][172] ([fdo#109274] / [fdo#111767]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#8381]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8381]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8381]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3637]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109274]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271]) +10 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825]) +14 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672]) +6 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#2672]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8810]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#2587] / [i915#2672]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#8708]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#5354]) +50 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][187] ([fdo#111825]) +12 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8708]) +22 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8708]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +26 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3023]) +32 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#110189]) +10 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#1825]) +9 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825] / [i915#1825]) +47 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#5439]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#109280]) +8 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-16/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#6301]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#6301]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#6301]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-17/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][204] ([fdo#109289]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8821]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8821]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#6953]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][208] ([i915#8292]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#5176] / [i915#9423]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#5235]) +5 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#5235]) +11 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5235]) +15 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5235]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#5235]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#6524] / [i915#6805]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#658]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][219] ([fdo#111068] / [i915#658]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-tglu: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#658]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-apl: NOTRUN -> [SKIP][221] ([fdo#109271] / [i915#658]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#1072]) +10 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#1072] / [i915#4078]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-17/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#1072]) +10 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_psr@psr2_dpms.html * igt@kms_rotation_crc@bad-pixel-format: - shard-rkl: [PASS][225] -> [INCOMPLETE][226] ([i915#8875]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-1/igt@kms_rotation_crc@bad-pixel-format.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#5289]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#4235]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#4235] / [i915#5190]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#4098]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#4098]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][233] ([IGT#2]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1: - shard-apl: [PASS][234] -> [FAIL][235] ([i915#9196]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-apl1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][236] -> [ABORT][237] ([i915#9414]) +1 other test abort [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [DMESG-WARN][238] ([i915#8841]) +1 other test dmesg-warn [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-snb1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8808]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-10/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2437]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2437]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#2437]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2437]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][245] ([i915#8724]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2436]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#2433]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [PASS][248] -> [FAIL][249] ([i915#4349]) +3 other tests fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#8850]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-rkl: NOTRUN -> [SKIP][251] ([fdo#112283]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@perf_pmu@event-wait@rcs0.html - shard-dg1: NOTRUN -> [SKIP][252] ([fdo#112283]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-18/igt@perf_pmu@event-wait@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8807]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-4/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#8516]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][255] ([fdo#109291]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-read: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3708]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3291] / [i915#3708]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][258] ([fdo#109295] / [i915#3291] / [i915#3708]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3708] / [i915#4077]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109295] / [i915#3708]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [PASS][261] -> [FAIL][262] ([i915#1731]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-5/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109315] / [i915#2575]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-10/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#2575]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-12/igt@v3d/v3d_submit_cl@simple-flush-cache.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#2575]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2575]) +17 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][267] ([fdo#109315]) +19 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@v3d/v3d_wait_bo@unused-bo-1ns: - shard-apl: NOTRUN -> [SKIP][268] ([fdo#109271]) +115 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl1/igt@v3d/v3d_wait_bo@unused-bo-1ns.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#7711]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#7711]) +12 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@get-after-free: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#2575]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-7/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#7711]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#7711]) +12 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][274] ([i915#7892]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-dg2-3/igt@gem_eio@kms.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][276] ([i915#2842]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][278] ([i915#7975] / [i915#8213]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][280] ([i915#7069]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][282] ([i915#8489] / [i915#8668]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][284] ([i915#9407]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][286] ([fdo#103375]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][288] ([i915#2346]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-suspend@c-edp1: - shard-mtlp: [INCOMPLETE][290] -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@c-edp1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-8/igt@kms_flip@flip-vs-suspend@c-edp1.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-dg2: [FAIL][292] ([fdo#103375]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-dg2-1/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-7/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][294] ([i915#6880]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][296] ([i915#8292]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][298] ([fdo#109271]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-apl2/igt@kms_pm_dc@dc9-dpms.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-apl4/igt@kms_pm_dc@dc9-dpms.html * {igt@kms_pm_rpm@dpms-non-lpsp}: - shard-rkl: [SKIP][300] ([i915#9519]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][302] ([i915#9475]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [INCOMPLETE][304] ([i915#8875]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][306] ([i915#7484]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][308] ([i915#4349]) -> [PASS][309] +3 other tests pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][310] ([i915#2681] / [i915#3591]) -> [WARN][311] ([i915#2681]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [DMESG-FAIL][312] ([i915#8561]) -> [FAIL][313] ([i915#8247]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][314] ([fdo#109285]) -> [SKIP][315] ([fdo#109285] / [i915#4098]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13777/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#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#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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [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#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9475]: https://gitlab.freedesktop.org/drm/intel/issues/9475 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7549 -> IGTPW_10027 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13777: 1b4fd688d213556268c50f853746c94c9a0cfee7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10027: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/index.html IGT_7549: bc3314b187318a4238c6fae583770b389afa83c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10027/index.html [-- Attachment #2: Type: text/html, Size: 104101 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-10-23 22:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-10-24 16:22 ` Patchwork 2023-10-25 5:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-24 16:22 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3006 bytes --] == Series Details == Series: tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) URL : https://patchwork.freedesktop.org/series/125339/ State : success == Summary == CI Bug Log - changes from CI_DRM_13780 -> IGTPW_10056 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/index.html Participating hosts (40 -> 38) ------------------------------ Additional (1): fi-kbl-soraka Missing (3): bat-kbl-2 bat-adlp-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10056 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#1886]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [PASS][4] -> [DMESG-FAIL][5] ([i915#9500]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/bat-dg2-9/igt@i915_selftest@live@workarounds.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#9500]: https://gitlab.freedesktop.org/drm/intel/issues/9500 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7552 -> IGTPW_10056 CI-20190529: 20190529 CI_DRM_13780: 8dc266dc02693bf7175ef9f862ddb7368de41325 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10056: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/index.html IGT_7552: 557856802dfee103802f1157f97c65bb476d5468 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/index.html [-- Attachment #2: Type: text/html, Size: 3789 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-10-24 16:22 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) Patchwork @ 2023-10-25 5:42 ` Patchwork 2023-10-25 8:51 ` [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Andrzej Hajda 2023-10-25 9:02 ` Nirmoy Das 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-25 5:42 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 74202 bytes --] == Series Details == Series: tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) URL : https://patchwork.freedesktop.org/series/125339/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13780_full -> IGTPW_10056_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10056_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10056_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10056/index.html Participating hosts (10 -> 12) ------------------------------ Additional (2): shard-mtlp0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10056_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html Known issues ------------ Here are the changes found in IGTPW_10056_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][4] ([i915#6122]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-6/igt@api_intel_bb@render-ccs.html * igt@core_hotunplug@unbind-rebind: - shard-snb: [PASS][5] -> [INCOMPLETE][6] ([i915#9533]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-snb5/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-snb1/igt@core_hotunplug@unbind-rebind.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3555]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#7297]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#2410]) +3 other tests fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#5882]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][19] -> [FAIL][20] ([i915#7816]) +2 other tests fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [PASS][22] -> [ABORT][23] ([i915#7941] / [i915#9414]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-1/igt@gem_eio@in-flight-contexts-10ms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@kms: - shard-dg2: [PASS][24] -> [FAIL][25] ([i915#5784]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg2-11/igt@gem_eio@kms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][26] -> [FAIL][27] ([i915#5784]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg1-19/igt@gem_eio@unwedge-stress.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_eio@wait-wedge-10ms: - shard-mtlp: [PASS][28] -> [ABORT][29] ([i915#9414]) +1 other test abort [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-2/igt@gem_eio@wait-wedge-10ms.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_eio@wait-wedge-10ms.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#6334]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#6334]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][36] ([i915#2842]) +2 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][38] -> [FAIL][39] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][40] -> [FAIL][41] ([i915#2842]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][42] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][43] -> [FAIL][44] ([i915#2842]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-mtlp: [PASS][45] -> [DMESG-WARN][46] ([i915#8962]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-7/igt@gem_exec_fence@parallel@vcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_fence@parallel@vcs1: - shard-mtlp: [PASS][47] -> [DMESG-FAIL][48] ([i915#8962]) +2 other tests dmesg-fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-7/igt@gem_exec_fence@parallel@vcs1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs1.html * igt@gem_exec_fence@parallel@vecs0: - shard-mtlp: [PASS][49] -> [FAIL][50] ([i915#8957]) +1 other test fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-7/igt@gem_exec_fence@parallel@vecs0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-12/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#5107]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +9 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_mmap_gtt@basic-short.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-16/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html * igt@gem_partial_pwrite_pread@reads: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@read-write: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-1/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271]) +35 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-glk5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][83] ([i915#3318]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl1/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg1: NOTRUN -> [SKIP][84] ([fdo#109289]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-12/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#109289]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-3/igt@gen7_exec_parse@oacontrol-tracking.html - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#109289]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-1/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#6227]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-15/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][89] ([i915#9559]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][90] -> [ABORT][91] ([i915#8489] / [i915#8668]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8436]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6621]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][94] -> [INCOMPLETE][95] ([i915#7790]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-snb6/igt@i915_pm_rps@reset.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#8925]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#8925]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@i915_pm_rps@thresholds@gt0.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3555] / [i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4387]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][101] -> [DMESG-FAIL][102] ([i915#5334]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212] / [i915#5608]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][105] ([i915#8247]) +3 other tests fail [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6228]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6229]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-apl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#1769]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][110] ([fdo#111614]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][111] -> [FAIL][112] ([i915#5138]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][114] ([i915#5138]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][116] -> [FAIL][117] ([i915#3743]) +2 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][118] ([fdo#111614] / [i915#3638]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111614]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-10/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111615]) +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3742]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-16/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#7213]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-25: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111827]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111827]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#7828]) +6 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3299]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][134] ([i915#7173]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl6/igt@kms_content_protection@srm@pipe-a-dp-1.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3359]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3555]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#8814]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#109274] / [fdo#111767] / [i915#5354]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#4103]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#4103]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#4213]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4103] / [i915#4213] / [i915#5608]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3546]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-apl: NOTRUN -> [SKIP][147] ([fdo#109271] / [fdo#111767]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [PASS][149] -> [DMESG-WARN][150] ([i915#2017]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-1/igt@kms_cursor_legacy@single-bo@all-pipes.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#9226] / [i915#9261]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#9227]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#1257]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3469]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][158] ([fdo#109271] / [fdo#111767]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-snb7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8381]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8381]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg1: NOTRUN -> [SKIP][161] ([fdo#111825]) +8 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3637]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111825]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#3637]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-7/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][166] ([i915#8841]) +1 other test dmesg-warn [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8810]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#2672]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][171] ([fdo#109285]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: [PASS][172] -> [FAIL][173] ([i915#6880]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#8708]) +12 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8708]) +6 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +21 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#5354]) +25 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#109280]) +5 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#110189]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3458]) +18 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3458]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3023]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#8708]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][184] ([fdo#111825] / [i915#1825]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#6301]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][188] ([fdo#109289]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#109289]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][190] ([fdo#109271]) +10 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-snb1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#6953]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][192] ([i915#8292]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5235]) +15 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#5235]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#5235]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#5235]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#5235]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#6524] / [i915#6805]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#6524]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-9/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][203] ([fdo#109271] / [i915#658]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#1072]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4235]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4235] / [i915#5190]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8809]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#4098]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8623]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][211] -> [FAIL][212] ([i915#9196]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2437]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html - shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [i915#2437]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl6/igt@kms_writeback@writeback-fb-id.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][215] ([i915#8724]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][216] -> [FAIL][217] ([i915#4349]) +3 other tests fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#8850]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][219] ([fdo#112283]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3708]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3708]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][222] ([fdo#109295] / [i915#3708]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@prime_vgem@fence-read-hang.html - shard-tglu: NOTRUN -> [SKIP][223] ([fdo#109295]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-10/igt@prime_vgem@fence-read-hang.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [PASS][224] -> [ABORT][225] ([i915#8521] / [i915#8865]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@v3d/v3d_perfmon@destroy-valid-perfmon: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2575]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-tglu: NOTRUN -> [SKIP][227] ([fdo#109315] / [i915#2575]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-8/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2575]) +15 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-perfmon.html - shard-rkl: NOTRUN -> [SKIP][229] ([fdo#109315]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2575]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-15/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-apl: NOTRUN -> [SKIP][231] ([fdo#109271]) +260 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-apl2/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2575]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-7/igt@vc4/vc4_label_bo@set-bad-handle.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#7711]) +6 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@vc4/vc4_label_bo@set-bad-handle.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#7711]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#7711]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#7711]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-16/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][237] ([i915#6268]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@wait-immediate: - shard-mtlp: [ABORT][239] ([i915#9262]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-4/igt@gem_eio@wait-immediate.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-4/igt@gem_eio@wait-immediate.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][241] ([i915#2846]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][243] ([i915#7975] / [i915#8213]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][245] ([i915#4936] / [i915#5493]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_hangman@detector@ccs0: - shard-mtlp: [ABORT][247] ([i915#9414]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-4/igt@i915_hangman@detector@ccs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@i915_hangman@detector@ccs0.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][249] ([i915#8456]) -> [PASS][250] +2 other tests pass [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][251] ([i915#7069]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][253] ([i915#3743]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][255] ([i915#2346]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * {igt@kms_pm_rpm@i2c}: - shard-dg2: [FAIL][257] ([i915#8717]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg2-2/igt@kms_pm_rpm@i2c.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-3/igt@kms_pm_rpm@i2c.html * {igt@kms_pm_rpm@modeset-lpsp}: - shard-dg1: [SKIP][259] ([i915#9519]) -> [PASS][260] +1 other test pass [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html * {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}: - shard-rkl: [SKIP][261] ([i915#9519]) -> [PASS][262] +2 other tests pass [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][263] ([i915#9196]) -> [PASS][264] +1 other test pass [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-tglu: [FAIL][265] ([i915#9196]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1: - shard-snb: [FAIL][267] ([i915#9196]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][269] ([i915#4349]) -> [PASS][270] +3 other tests pass [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [ABORT][271] ([i915#8521] / [i915#8865]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html #### Warnings #### * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [FAIL][273] ([i915#8247]) -> [DMESG-FAIL][274] ([i915#8561]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-mtlp-3/igt@kms_async_flips@crc@pipe-b-edp-1.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][275] ([fdo#110189] / [i915#3955]) -> [SKIP][276] ([i915#3955]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][277] ([fdo#109285]) -> [SKIP][278] ([fdo#109285] / [i915#4098]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13780/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [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#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#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#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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [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#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8957]: https://gitlab.freedesktop.org/drm/intel/issues/8957 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9533]: https://gitlab.freedesktop.org/drm/intel/issues/9533 [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7552 -> IGTPW_10056 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13780: 8dc266dc02693bf7175ef9f862ddb7368de41325 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10056: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/index.html IGT_7552: 557856802dfee103802f1157f97c65bb476d5468 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10056/index.html [-- Attachment #2: Type: text/html, Size: 89094 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab ` (4 preceding siblings ...) 2023-10-25 5:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-10-25 8:51 ` Andrzej Hajda 2023-10-25 9:02 ` Nirmoy Das 6 siblings, 0 replies; 8+ messages in thread From: Andrzej Hajda @ 2023-10-25 8:51 UTC (permalink / raw) To: Mauro Carvalho Chehab, igt-dev On 19.10.2023 11:15, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > For i915 devices are used, there's a glue with snd_hda_intel. > Currently, such glue requires that the audio driver to be unused > and removed before being able to remove the i915 driver. > > There is already a logic at igt library to do it the right way, > but device_reset currently doesn't use. > > Also, the logic is hardcoded to work only with Haswell, Broadwell > and DG1. > > Change the logic to use the proper logic to remove such > module using the library. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > tests/device_reset.c | 47 ++++++-------------------------------------- > 1 file changed, 6 insertions(+), 41 deletions(-) Nice cleanup, now kick_snd_hda_intel has no other users, could be moved/staticized. Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > > diff --git a/tests/device_reset.c b/tests/device_reset.c > index 9ebd479dfefa..ef08164aad41 100644 > --- a/tests/device_reset.c > +++ b/tests/device_reset.c > @@ -65,7 +65,7 @@ struct device_fds { > int slot_dir; /* pci hotplug slots fd */ > } fds; > char dev_bus_addr[DEV_BUS_ADDR_LEN]; > - bool snd_unload; > + char *snd_driver; > }; > > static int __open_sysfs_dir(int fd, const char* path) > @@ -188,7 +188,6 @@ static void init_device_fds(struct device_fds *dev) > { > char dev_path[PATH_MAX]; > char *addr_pos; > - uint32_t devid; > > igt_debug("open device\n"); > /** > @@ -198,18 +197,9 @@ static void init_device_fds(struct device_fds *dev) > */ > dev->fds.dev = __drm_open_driver(DRIVER_ANY); > igt_assert_fd(dev->fds.dev); > - if (is_i915_device(dev->fds.dev)) { > + if (is_i915_device(dev->fds.dev)) > igt_require_gem(dev->fds.dev); > > - devid = intel_get_drm_devid(dev->fds.dev); > - if ((IS_HASWELL(devid) || IS_BROADWELL(devid) || > - IS_DG1(devid)) && > - (igt_kmod_is_loaded("snd_hda_intel"))) { > - igt_debug("Enable WA to unload snd driver\n"); > - dev->snd_unload = true; > - } > - } > - > igt_assert(device_sysfs_path(dev->fds.dev, dev_path)); > addr_pos = strrchr(dev_path, '/'); > igt_assert(addr_pos); > @@ -312,33 +302,8 @@ static bool is_sysfs_cold_reset_supported(int slot_fd) > /* Unbind the driver from the device */ > static void driver_unbind(struct device_fds *dev) > { > - /** > - * FIXME: Unbinding the i915 driver on affected platforms with > - * audio results in a kernel WARN on "i915 raw-wakerefs=1 > - * wakelocks=1 on cleanup". The below CI friendly user level > - * workaround to unload and de-couple audio from IGT testing, > - * prevents the warning from appearing. Drop this hack as soon > - * as this is fixed in the kernel. unbind/re-bind validation > - * on audio side is not robust and we could have potential > - * failures blocking display CI, currently this seems to the > - * safest and easiest way out. > - */ > - if (dev->snd_unload) { > - igt_terminate_process(SIGTERM, "alsactl"); > - > - /* unbind snd_hda_intel */ > - kick_snd_hda_intel(); > - > - if (igt_kmod_unload("snd_hda_intel", 0)) { > - dev->snd_unload = false; > - igt_warn("Could not unload snd_hda_intel\n"); > - igt_kmod_list_loaded(); > - igt_lsof("/dev/snd"); > - igt_skip("Audio is in use, skipping\n"); > - } else { > - igt_info("Preventively unloaded snd_hda_intel\n"); > - } > - } > + if (is_i915_device(dev->fds.dev)) > + igt_audio_driver_unload(&dev->snd_driver); > > igt_debug("unbind the driver from the device\n"); > igt_assert(igt_sysfs_set(dev->fds.drv_dir, "unbind", > @@ -352,8 +317,8 @@ static void driver_bind(struct device_fds *dev) > igt_abort_on_f(!igt_sysfs_set(dev->fds.drv_dir, "bind", > dev->dev_bus_addr), "driver rebind failed"); > > - if (dev->snd_unload) > - igt_kmod_load("snd_hda_intel", NULL); > + if (dev->snd_driver) > + igt_kmod_load(dev->snd_driver, NULL); > } > > /* Initiate device reset */ ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab ` (5 preceding siblings ...) 2023-10-25 8:51 ` [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Andrzej Hajda @ 2023-10-25 9:02 ` Nirmoy Das 6 siblings, 0 replies; 8+ messages in thread From: Nirmoy Das @ 2023-10-25 9:02 UTC (permalink / raw) To: Mauro Carvalho Chehab, igt-dev On 10/19/2023 11:15 AM, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > For i915 devices are used, there's a glue with snd_hda_intel. > Currently, such glue requires that the audio driver to be unused > and removed before being able to remove the i915 driver. > > There is already a logic at igt library to do it the right way, > but device_reset currently doesn't use. > > Also, the logic is hardcoded to work only with Haswell, Broadwell > and DG1. > > Change the logic to use the proper logic to remove such > module using the library. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Looks much cleaner. Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> > --- > tests/device_reset.c | 47 ++++++-------------------------------------- > 1 file changed, 6 insertions(+), 41 deletions(-) > > diff --git a/tests/device_reset.c b/tests/device_reset.c > index 9ebd479dfefa..ef08164aad41 100644 > --- a/tests/device_reset.c > +++ b/tests/device_reset.c > @@ -65,7 +65,7 @@ struct device_fds { > int slot_dir; /* pci hotplug slots fd */ > } fds; > char dev_bus_addr[DEV_BUS_ADDR_LEN]; > - bool snd_unload; > + char *snd_driver; > }; > > static int __open_sysfs_dir(int fd, const char* path) > @@ -188,7 +188,6 @@ static void init_device_fds(struct device_fds *dev) > { > char dev_path[PATH_MAX]; > char *addr_pos; > - uint32_t devid; > > igt_debug("open device\n"); > /** > @@ -198,18 +197,9 @@ static void init_device_fds(struct device_fds *dev) > */ > dev->fds.dev = __drm_open_driver(DRIVER_ANY); > igt_assert_fd(dev->fds.dev); > - if (is_i915_device(dev->fds.dev)) { > + if (is_i915_device(dev->fds.dev)) > igt_require_gem(dev->fds.dev); > > - devid = intel_get_drm_devid(dev->fds.dev); > - if ((IS_HASWELL(devid) || IS_BROADWELL(devid) || > - IS_DG1(devid)) && > - (igt_kmod_is_loaded("snd_hda_intel"))) { > - igt_debug("Enable WA to unload snd driver\n"); > - dev->snd_unload = true; > - } > - } > - > igt_assert(device_sysfs_path(dev->fds.dev, dev_path)); > addr_pos = strrchr(dev_path, '/'); > igt_assert(addr_pos); > @@ -312,33 +302,8 @@ static bool is_sysfs_cold_reset_supported(int slot_fd) > /* Unbind the driver from the device */ > static void driver_unbind(struct device_fds *dev) > { > - /** > - * FIXME: Unbinding the i915 driver on affected platforms with > - * audio results in a kernel WARN on "i915 raw-wakerefs=1 > - * wakelocks=1 on cleanup". The below CI friendly user level > - * workaround to unload and de-couple audio from IGT testing, > - * prevents the warning from appearing. Drop this hack as soon > - * as this is fixed in the kernel. unbind/re-bind validation > - * on audio side is not robust and we could have potential > - * failures blocking display CI, currently this seems to the > - * safest and easiest way out. > - */ > - if (dev->snd_unload) { > - igt_terminate_process(SIGTERM, "alsactl"); > - > - /* unbind snd_hda_intel */ > - kick_snd_hda_intel(); > - > - if (igt_kmod_unload("snd_hda_intel", 0)) { > - dev->snd_unload = false; > - igt_warn("Could not unload snd_hda_intel\n"); > - igt_kmod_list_loaded(); > - igt_lsof("/dev/snd"); > - igt_skip("Audio is in use, skipping\n"); > - } else { > - igt_info("Preventively unloaded snd_hda_intel\n"); > - } > - } > + if (is_i915_device(dev->fds.dev)) > + igt_audio_driver_unload(&dev->snd_driver); > > igt_debug("unbind the driver from the device\n"); > igt_assert(igt_sysfs_set(dev->fds.drv_dir, "unbind", > @@ -352,8 +317,8 @@ static void driver_bind(struct device_fds *dev) > igt_abort_on_f(!igt_sysfs_set(dev->fds.drv_dir, "bind", > dev->dev_bus_addr), "driver rebind failed"); > > - if (dev->snd_unload) > - igt_kmod_load("snd_hda_intel", NULL); > + if (dev->snd_driver) > + igt_kmod_load(dev->snd_driver, NULL); > } > > /* Initiate device reset */ ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-10-25 9:03 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-19 9:15 [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Mauro Carvalho Chehab 2023-10-23 16:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-10-23 16:51 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-23 22:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-24 16:22 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/device_reset: fix logic to unbind when snd_hda_intel is loaded (rev2) Patchwork 2023-10-25 5:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-25 8:51 ` [igt-dev] [PATCH i-g-t] tests/device_reset: fix logic to unbind when snd_hda_intel is loaded Andrzej Hajda 2023-10-25 9:02 ` Nirmoy Das
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox