* [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs
@ 2023-03-09 8:37 Vinod Govindapillai
2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_debugfs: set provision to ignore long HPDs Vinod Govindapillai
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Vinod Govindapillai @ 2023-03-09 8:37 UTC (permalink / raw)
To: igt-dev
Some panels generate spurious HPDs during CI execution causing
random unexpected failures. There are two parts for handling
this issue - in driver and in IGT. This is for IGT.
IGT will set ignore long HPD debugfs entry to ignore long HPDs
in the driver. And then by force connect the active connectors,
we can avoid the detect hooks being executed from drm and hence
avoid random failures. The behavior is controlled using the
environment variable IGT_KMS_IGNORE_HPD. Set this var in CI
exections where panels that generate spurioud HPDs are used.
Vinod Govindapillai (2):
lib/igt_debugfs: set provision to ignore long HPDs
lib/igt_kms: handle spurious HPDs
lib/igt_debugfs.c | 26 ++++++++++++++++++++++
lib/igt_debugfs.h | 1 +
lib/igt_kms.c | 56 +++++++++++++++++++++++++++++++++++++++++++++--
3 files changed, 81 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_debugfs: set provision to ignore long HPDs 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai @ 2023-03-09 8:37 ` Vinod Govindapillai 2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_kms: handle spurious HPDs Vinod Govindapillai ` (4 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Vinod Govindapillai @ 2023-03-09 8:37 UTC (permalink / raw) To: igt-dev Add provision to ignore long HPDs as some displays generate long HPDs even while connected. For some CI systems with such displays it might be usefull to ignore such spurious HPDs while executing testcases. v2: Some sytling issues (Kamil) Cc: Imre Deak <imre.deak@intel.com> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- lib/igt_debugfs.c | 26 ++++++++++++++++++++++++++ lib/igt_debugfs.h | 1 + 2 files changed, 27 insertions(+) diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c index 6de178d6..05889bbe 100644 --- a/lib/igt_debugfs.c +++ b/lib/igt_debugfs.c @@ -411,6 +411,32 @@ bool igt_debugfs_search(int device, const char *filename, const char *substring) return matched; } +/** + * igt_ignore_long_hpd: + * @drm_fd: the DRM device file fd + * @enable: flag to control the ignore long HPD entry + * + * Set / unset ignore long HPD events from the panels. Some panels + * generate long HPDs even while connected to the ports causing + * unexpected CI execution issues. Set this to ignore such unexpected + * long HPDs where we dont expect to disconnect the displays. + */ +bool igt_ignore_long_hpd(int drm_fd, bool enable) +{ + int fd = igt_debugfs_open(drm_fd, "i915_ignore_long_hpd", O_WRONLY); + int ret; + + if (fd < 0) { + igt_debug("couldn't open ignore long hpd file\n"); + return false; + } + + ret = write(fd, enable ? "1" : "0", 1); + + close(fd); + return ret == 1; +} + static void igt_hpd_storm_exit_handler(int sig) { int fd = drm_open_driver(DRIVER_INTEL); diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h index a883e2d4..4824344a 100644 --- a/lib/igt_debugfs.h +++ b/lib/igt_debugfs.h @@ -72,6 +72,7 @@ void igt_hpd_storm_set_threshold(int fd, unsigned int threshold); void igt_hpd_storm_reset(int fd); bool igt_hpd_storm_detected(int fd); void igt_require_hpd_storm_ctl(int fd); +bool igt_ignore_long_hpd(int fd, bool enable); /* * Drop caches -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_kms: handle spurious HPDs 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai 2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_debugfs: set provision to ignore long HPDs Vinod Govindapillai @ 2023-03-09 8:37 ` Vinod Govindapillai 2023-03-09 9:36 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Vinod Govindapillai @ 2023-03-09 8:37 UTC (permalink / raw) To: igt-dev Some panels generate long HPDs during CI execution steps even while connected to the system and cause unexpected CI execution failures. In environments like CI, we don't expect to disconnect the panels in the middle of the CI execution. There are two parts to handle this case - display driver and IGT 1. In the display driver, based on a flag, long HPDs are ignored. This flag can be set/unset using debugfs on systems where such panels are connected. 2. In IGT, add provision to set ignore long HPD debugfs entry on the driver and also set Force "on" the active connectors. With force on, the connector's detect sequences will not get initiated. This patch handles the IGT part. An enviroment variable "IGT_KMS_IGNORE_HPD" is added to differentiate systems which require such spurious HPD handling. If this variable is on, ignore long HPD debugs entry is set and active connectors are set to force "on" state. Many thanks to "Imre Deak" for the suggestions and support v2: Minor updates in the comments. v3: Updates to commit texts (Kamil) Cc: Imre Deak <imre.deak@intel.com> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- lib/igt_kms.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8c7dd85b..24b7622a 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -2390,6 +2390,54 @@ static bool igt_pipe_has_valid_output(igt_display_t *display, enum pipe pipe) return false; } +/** + * igt_handle_spurious_hpd: + * @display: a pointer to igt_display_t structure + * + * Handle environment variable "IGT_KMS_IGNORE_HPD" to manage the spurious + * HPD cases in CI systems where such spurious HPDs are generated by the + * panels without any specific reasons and cause CI execution failures. + * + * This will set the i915_ignore_long_hpd debugfs entry to 1 as a cue for + * the driver to start ignoring the HPDs. + * + * Also, this will set the active connectors' force status to "on" + * so that dp/hdmi_detect routines don't get called frequently. + * + * Force status is kept on after this until it is manually reset. + */ +static void igt_handle_spurious_hpd(igt_display_t *display) +{ + igt_output_t *output; + + /* Proceed with spurious HPD handling only if the env var is set */ + if (!getenv("IGT_KMS_IGNORE_HPD")) + return; + + /* Set the ignore HPD for the driver */ + if (!igt_ignore_long_hpd(display->drm_fd, true)) { + igt_info("Unable set the ignore HPD debugfs entry \n"); + return; + } + + for_each_connected_output(display, output) { + drmModeConnector *conn = output->config.connector; + + if (!force_connector(display->drm_fd, conn, "on")) { + igt_info("Unable to force state on %s-%d\n", + kmstest_connector_type_str(conn->connector_type), + conn->connector_type_id); + continue; + } + + igt_info("Force connector ON for %s-%d\n", + kmstest_connector_type_str(conn->connector_type), + conn->connector_type_id); + } + + dump_forced_connectors(); +} + /** * igt_display_require: * @display: a pointer to an initialized #igt_display_t structure @@ -2713,11 +2761,15 @@ void igt_display_require(igt_display_t *display, int drm_fd) out: LOG_UNINDENT(display); - if (display->n_pipes && display->n_outputs) + if (display->n_pipes && display->n_outputs) { igt_enable_connectors(drm_fd); - else + + igt_handle_spurious_hpd(display); + } + else { igt_skip("No KMS driver or no outputs, pipes: %d, outputs: %d\n", display->n_pipes, display->n_outputs); + } } /** -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Handle spurious HPDs 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai 2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_debugfs: set provision to ignore long HPDs Vinod Govindapillai 2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_kms: handle spurious HPDs Vinod Govindapillai @ 2023-03-09 9:36 ` Patchwork 2023-03-11 0:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-09 9:36 UTC (permalink / raw) To: Govindapillai, Vinod; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7200 bytes --] == Series Details == Series: Handle spurious HPDs URL : https://patchwork.freedesktop.org/series/114900/ State : success == Summary == CI Bug Log - changes from IGT_7188 -> IGTPW_8580 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/index.html Participating hosts (36 -> 36) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8580 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [PASS][1] -> [ABORT][2] ([i915#5122]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gem_contexts: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][5] ([i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-kbl-soraka/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][6] ([i915#5334] / [i915#7872]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - bat-adlp-9: [PASS][8] -> [DMESG-FAIL][9] ([i915#7699]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-adlp-9/igt@i915_selftest@live@migrate.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-adlp-9/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][10] -> [ABORT][11] ([i915#4983] / [i915#7913]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-rpls-2/igt@i915_selftest@live@reset.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-FAIL][12] ([i915#6367] / [i915#7996]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [PASS][13] -> [FAIL][14] ([fdo#103375]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_frames@hdmi-crc-fast: - fi-kbl-soraka: NOTRUN -> [SKIP][15] ([fdo#109271]) +16 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-bsw-n3050: NOTRUN -> [SKIP][16] ([fdo#109271]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - bat-rpls-1: NOTRUN -> [SKIP][17] ([i915#7828]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][18] ([i915#1845]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][19] ([i915#7911]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_heartbeat: - fi-cfl-8109u: [DMESG-FAIL][21] ([i915#5334]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/fi-cfl-8109u/igt@i915_selftest@live@gt_heartbeat.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/fi-cfl-8109u/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@migrate: - bat-rpls-2: [DMESG-FAIL][23] ([i915#7699]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-rpls-2/igt@i915_selftest@live@migrate.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-rpls-2/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][25] ([i915#7694] / [i915#7911]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/bat-rpls-1/igt@i915_selftest@live@requests.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/bat-rpls-1/igt@i915_selftest@live@requests.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [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#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7188 -> IGTPW_8580 CI-20190529: 20190529 CI_DRM_12829: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8580: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/index.html IGT_7188: b35bfa32fe672d67ced8555557e3e707ace211ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/index.html [-- Attachment #2: Type: text/html, Size: 8703 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Handle spurious HPDs 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai ` (2 preceding siblings ...) 2023-03-09 9:36 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle " Patchwork @ 2023-03-11 0:24 ` Patchwork 2023-03-15 16:39 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle spurious HPDs (rev2) Patchwork 2023-03-16 4:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-11 0:24 UTC (permalink / raw) To: Govindapillai, Vinod; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 39577 bytes --] == Series Details == Series: Handle spurious HPDs URL : https://patchwork.freedesktop.org/series/114900/ State : failure == Summary == CI Bug Log - changes from IGT_7188_full -> IGTPW_8580_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8580_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8580_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8580_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@forked-move@pipe-a: - shard-tglu-9: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_cursor_legacy@forked-move@pipe-a.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe/xe_exec_basic@once-rebind}: - {shard-dg1}: NOTRUN -> [SKIP][2] +181 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-dg1-13/igt@xe/xe_exec_basic@once-rebind.html Known issues ------------ Here are the changes found in IGTPW_8580_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_read@invalid-buffer: - shard-tglu-9: NOTRUN -> [SKIP][3] ([i915#1845]) +9 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@drm_read@invalid-buffer.html * igt@fbdev@pan: - shard-tglu-9: NOTRUN -> [SKIP][4] ([i915#2582]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@fbdev@pan.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu-10: NOTRUN -> [SKIP][5] ([fdo#109314]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-9: NOTRUN -> [SKIP][6] ([i915#280]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-9: NOTRUN -> [SKIP][7] ([i915#6344]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglu-10: NOTRUN -> [FAIL][8] ([i915#2842]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-glk6/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu-9: NOTRUN -> [SKIP][11] ([i915#4613]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-10: NOTRUN -> [SKIP][12] ([i915#4613]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@gem_lmem_swapping@random-engines.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-9: NOTRUN -> [WARN][13] ([i915#2658]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-tglu-10: NOTRUN -> [SKIP][14] ([i915#4270]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglu-9: NOTRUN -> [SKIP][15] ([i915#4270]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-9: NOTRUN -> [SKIP][16] ([fdo#110542]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gem_userptr_blits@coherency-sync.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu-10: NOTRUN -> [SKIP][17] ([fdo#109289]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-large: - shard-tglu-10: NOTRUN -> [SKIP][18] ([i915#2527] / [i915#2856]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-9: NOTRUN -> [SKIP][19] ([i915#2527] / [i915#2856]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_hwmon@hwmon-write: - shard-tglu-9: NOTRUN -> [SKIP][20] ([i915#7707]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@i915_hwmon@hwmon-write.html * igt@i915_pm_backlight@basic-brightness: - shard-tglu-9: NOTRUN -> [SKIP][21] ([i915#7561]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rpm@i2c: - shard-tglu-9: NOTRUN -> [SKIP][22] ([i915#3547]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@i915_pm_rpm@i2c.html * igt@i915_pm_sseu@full-enable: - shard-tglu-9: NOTRUN -> [SKIP][23] ([i915#4387]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-tglu-9: NOTRUN -> [SKIP][24] ([fdo#109302]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@i915_query@query-topology-unsupported.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu-10: NOTRUN -> [SKIP][25] ([i915#5286]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu-10: NOTRUN -> [SKIP][26] ([fdo#111614]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-tglu-9: NOTRUN -> [SKIP][27] ([fdo#111615] / [i915#1845] / [i915#7651]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-10: NOTRUN -> [SKIP][28] ([fdo#111615]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][29] ([i915#3689] / [i915#6095]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][30] ([i915#3689] / [i915#3886]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][31] ([fdo#111615] / [i915#3689]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][32] ([i915#3689]) +5 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-9: NOTRUN -> [SKIP][33] ([i915#3742]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@gamma: - shard-tglu-10: NOTRUN -> [SKIP][34] ([fdo#111827]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-tglu-9: NOTRUN -> [SKIP][35] ([i915#7828]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-tglu-10: NOTRUN -> [SKIP][36] ([i915#7828]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-9: NOTRUN -> [SKIP][37] ([i915#1845] / [i915#7651]) +42 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@type1: - shard-tglu-10: NOTRUN -> [SKIP][38] ([i915#6944] / [i915#7116] / [i915#7118]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu-10: NOTRUN -> [SKIP][39] ([fdo#109274]) +4 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][40] -> [FAIL][41] ([i915#2346]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu-9: NOTRUN -> [SKIP][42] ([fdo#109274] / [i915#3637]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu-10: NOTRUN -> [SKIP][43] ([fdo#109274] / [i915#3637]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@basic-flip-vs-dpms: - shard-tglu-9: NOTRUN -> [SKIP][44] ([i915#3637]) +4 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [PASS][45] -> [FAIL][46] ([i915#79]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-9: NOTRUN -> [SKIP][47] ([i915#3555]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-10: NOTRUN -> [SKIP][48] ([i915#2587] / [i915#2672]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271]) +4 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-tglu-10: NOTRUN -> [SKIP][50] ([fdo#109280]) +18 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-tglu-10: NOTRUN -> [SKIP][51] ([fdo#110189]) +13 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-9: NOTRUN -> [SKIP][52] ([i915#1849]) +36 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu-10: NOTRUN -> [SKIP][53] ([i915#3555]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-9: NOTRUN -> [SKIP][54] ([fdo#109289]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane@plane-position-hole@pipe-b-planes: - shard-tglu-9: NOTRUN -> [SKIP][55] ([i915#1849] / [i915#3558]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_plane@plane-position-hole@pipe-b-planes.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-tglu-9: NOTRUN -> [SKIP][56] ([i915#7128] / [i915#7294]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling: - shard-tglu-9: NOTRUN -> [SKIP][57] ([i915#3555] / [i915#6953]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-1: - shard-tglu-10: NOTRUN -> [SKIP][58] ([i915#5176]) +11 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-1.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-9: NOTRUN -> [SKIP][59] ([i915#6524]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-tglu-10: NOTRUN -> [SKIP][60] ([fdo#111068] / [i915#658]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-tglu-9: NOTRUN -> [SKIP][61] ([fdo#111068] / [i915#658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@sprite_mmap_gtt: - shard-tglu-9: NOTRUN -> [SKIP][62] ([fdo#110189]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-9: NOTRUN -> [SKIP][63] ([fdo#111615] / [i915#1845]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-10: NOTRUN -> [SKIP][64] ([fdo#111615] / [i915#5289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-tglu-9: NOTRUN -> [SKIP][65] ([fdo#109274]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@prime_vgem@basic-userptr: - shard-tglu-10: NOTRUN -> [SKIP][66] ([fdo#109295] / [i915#3301]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@prime_vgem@basic-userptr.html * igt@v3d/v3d_mmap@mmap-bad-handle: - shard-tglu-10: NOTRUN -> [SKIP][67] ([fdo#109315] / [i915#2575]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@v3d/v3d_mmap@mmap-bad-handle.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-tglu-9: NOTRUN -> [SKIP][68] ([fdo#109315] / [i915#2575]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-tglu-9: NOTRUN -> [SKIP][69] ([i915#2575]) +4 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-9/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-willneed: - shard-tglu-10: NOTRUN -> [SKIP][70] ([i915#2575]) +4 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-10/igt@vc4/vc4_purgeable_bo@mark-willneed.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - {shard-rkl}: [FAIL][71] ([i915#7742]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@fbdev@eof: - {shard-rkl}: [SKIP][73] ([i915#2582]) -> [PASS][74] +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@fbdev@eof.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-4/igt@fbdev@eof.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][75] ([i915#2842]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: [FAIL][77] ([i915#2842]) -> [PASS][78] +3 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - {shard-rkl}: [FAIL][79] ([i915#2842]) -> [PASS][80] +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_reloc@basic-write-read-active: - {shard-rkl}: [SKIP][81] ([i915#3281]) -> [PASS][82] +6 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][83] ([i915#3282]) -> [PASS][84] +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][85] ([i915#2527]) -> [PASS][86] +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_dc@dc5-dpms: - {shard-rkl}: [FAIL][87] ([i915#7330]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-5/igt@i915_pm_dc@dc5-dpms.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-2/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_dc@dc6-psr: - {shard-rkl}: [SKIP][89] ([i915#658]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@i915_pm_dc@dc6-psr.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - {shard-rkl}: [SKIP][91] ([i915#3361]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-rkl}: [SKIP][93] ([i915#1397]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][95] ([i915#5334]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - {shard-rkl}: [SKIP][97] ([i915#1845] / [i915#4098]) -> [PASS][98] +24 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][99] ([i915#2346]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - {shard-tglu}: [SKIP][101] ([i915#1845]) -> [PASS][102] +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][103] ([i915#79]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - {shard-tglu}: [SKIP][105] ([i915#1849]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - {shard-rkl}: [SKIP][107] ([i915#1849] / [i915#4098]) -> [PASS][108] +11 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_plane@plane-position-hole@pipe-b-planes: - {shard-rkl}: [SKIP][109] ([i915#1849]) -> [PASS][110] +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@kms_plane@plane-position-hole@pipe-b-planes.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@kms_plane@plane-position-hole@pipe-b-planes.html * igt@kms_psr@sprite_mmap_gtt: - {shard-rkl}: [SKIP][111] ([i915#1072]) -> [PASS][112] +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-3/igt@kms_psr@sprite_mmap_gtt.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm: - {shard-tglu}: [SKIP][113] ([i915#1845] / [i915#7651]) -> [PASS][114] +9 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-tglu-6/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-tglu-7/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html * igt@perf@gen8-unprivileged-single-ctx-counters: - {shard-rkl}: [SKIP][115] ([i915#2436]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][117] ([i915#1722]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@perf@polling-small-buf.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@perf@polling-small-buf.html * igt@prime_vgem@basic-fence-flip: - {shard-rkl}: [SKIP][119] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@prime_vgem@basic-fence-flip.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html * igt@testdisplay: - {shard-rkl}: [SKIP][121] ([i915#4098]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7188/shard-rkl-1/igt@testdisplay.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/shard-rkl-6/igt@testdisplay.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [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#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#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#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [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#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [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#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [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#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7188 -> IGTPW_8580 CI-20190529: 20190529 CI_DRM_12829: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8580: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/index.html IGT_7188: b35bfa32fe672d67ced8555557e3e707ace211ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8580/index.html [-- Attachment #2: Type: text/html, Size: 39176 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Handle spurious HPDs (rev2) 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai ` (3 preceding siblings ...) 2023-03-11 0:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-03-15 16:39 ` Patchwork 2023-03-16 4:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-03-15 16:39 UTC (permalink / raw) To: Govindapillai, Vinod; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5411 bytes --] == Series Details == Series: Handle spurious HPDs (rev2) URL : https://patchwork.freedesktop.org/series/114900/ State : success == Summary == CI Bug Log - changes from CI_DRM_12864 -> IGTPW_8614 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html Participating hosts (38 -> 37) ------------------------------ Additional (1): bat-atsm-1 Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8614 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#2582]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-atsm-1/igt@fbdev@eof.html * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: NOTRUN -> [ABORT][2] ([i915#6687] / [i915#7978]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_sync@basic-each: - bat-atsm-1: NOTRUN -> [FAIL][4] ([i915#8062]) +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-atsm-1/igt@gem_sync@basic-each.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-atsm-1/igt@gem_tiled_pread_basic.html * igt@i915_hangman@error-state-basic: - bat-atsm-1: NOTRUN -> [ABORT][7] ([i915#8060]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-atsm-1/igt@i915_hangman@error-state-basic.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][8] -> [ABORT][9] ([i915#7911] / [i915#7913]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/fi-bsw-nick/igt@i915_selftest@live@execlists.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][10] -> [DMESG-FAIL][11] ([i915#5334]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html - fi-glk-j4005: [PASS][12] -> [DMESG-FAIL][13] ([i915#5334]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-bsw-n3050: NOTRUN -> [SKIP][14] ([fdo#109271]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][15] ([i915#7911]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][17] ([i915#4983]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/bat-rpls-1/igt@i915_selftest@live@reset.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/bat-rpls-1/igt@i915_selftest@live@reset.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [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#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8060]: https://gitlab.freedesktop.org/drm/intel/issues/8060 [i915#8062]: https://gitlab.freedesktop.org/drm/intel/issues/8062 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7196 -> IGTPW_8614 CI-20190529: 20190529 CI_DRM_12864: efb4d3263a1932187dd525628e8b35d327f17a6f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8614: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html IGT_7196: 9b8c5dbe8cd82163ee198c43b81222d2b9b75fd4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html [-- Attachment #2: Type: text/html, Size: 6463 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Handle spurious HPDs (rev2) 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai ` (4 preceding siblings ...) 2023-03-15 16:39 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle spurious HPDs (rev2) Patchwork @ 2023-03-16 4:34 ` Patchwork 2023-03-16 17:37 ` Imre Deak 5 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2023-03-16 4:34 UTC (permalink / raw) To: Govindapillai, Vinod; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27560 bytes --] == Series Details == Series: Handle spurious HPDs (rev2) URL : https://patchwork.freedesktop.org/series/114900/ State : success == Summary == CI Bug Log - changes from CI_DRM_12864_full -> IGTPW_8614_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8614_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - {shard-tglu}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25}: - {shard-tglu}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25.html Known issues ------------ Here are the changes found in IGTPW_8614_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [PASS][4] -> [FAIL][5] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl1/igt@gem_lmem_swapping@verify.html * igt@gem_workarounds@suspend-resume: - shard-apl: NOTRUN -> [ABORT][7] ([i915#180]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1937]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3886]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#3886]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium_color@ctm-0-75: - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271]) +76 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl6/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][12] ([i915#7173]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl4/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +38 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][14] ([i915#7862]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#658]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#658]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk4/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@perf@stress-open-close: - shard-glk: [PASS][17] -> [ABORT][18] ([i915#5213]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk4/igt@perf@stress-open-close.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk4/igt@perf@stress-open-close.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@drm_read@invalid-buffer: - {shard-rkl}: [SKIP][21] ([i915#4098]) -> [PASS][22] +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-3/igt@drm_read@invalid-buffer.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@drm_read@invalid-buffer.html * igt@fbdev@info: - {shard-rkl}: [SKIP][23] ([i915#2582]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@fbdev@info.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-1/igt@fbdev@info.html - {shard-tglu}: [SKIP][25] ([i915#2582]) -> [PASS][26] +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@fbdev@info.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-3/igt@fbdev@info.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: [DMESG-WARN][27] ([i915#180]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl3/igt@gem_ctx_isolation@preservation-s3@vecs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][29] ([i915#2842]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-apl: [SKIP][31] ([fdo#109271]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_reloc@basic-write-read: - {shard-rkl}: [SKIP][33] ([i915#3281]) -> [PASS][34] +5 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_madvise@dontneed-before-pwrite: - {shard-rkl}: [SKIP][35] ([i915#3282]) -> [PASS][36] +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_mmap_wc@set-cache-level: - {shard-tglu}: [SKIP][37] ([i915#1850]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@gem_mmap_wc@set-cache-level.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-8/igt@gem_mmap_wc@set-cache-level.html - {shard-rkl}: [SKIP][39] ([i915#1850]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html * igt@gem_ppgtt@shrink-vs-evict-any: - {shard-rkl}: [ABORT][41] -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@gem_ppgtt@shrink-vs-evict-any.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-4/igt@gem_ppgtt@shrink-vs-evict-any.html * igt@gem_workarounds@suspend-resume-fd: - {shard-rkl}: [ABORT][43] ([i915#5122]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html - {shard-tglu}: [ABORT][45] ([i915#5122]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@gem_workarounds@suspend-resume-fd.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-6/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][47] ([i915#5566]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@gen9_exec_parse@allowed-single.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - {shard-rkl}: [SKIP][49] ([i915#2527]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_dc@dc6-dpms: - {shard-tglu}: [FAIL][51] ([i915#3989] / [i915#454]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-tglu}: [SKIP][53] ([i915#3547]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@i915_pm_rpm@system-suspend-modeset.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-2/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][55] ([i915#5334]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_draw_crc@fill-fb: - {shard-tglu}: [SKIP][57] ([i915#1845]) -> [PASS][58] +34 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_draw_crc@fill-fb.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-5/igt@kms_draw_crc@fill-fb.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [FAIL][59] ([i915#4767]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - {shard-rkl}: [SKIP][61] ([fdo#110189] / [i915#3955]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][63] ([i915#1849] / [i915#4098]) -> [PASS][64] +12 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - {shard-tglu}: [SKIP][65] ([i915#1849]) -> [PASS][66] +19 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - {shard-tglu}: [SKIP][67] ([i915#1849] / [i915#3558]) -> [PASS][68] +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane@plane-position-covered@pipe-a-planes: - {shard-rkl}: [SKIP][69] ([i915#1849]) -> [PASS][70] +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@kms_plane@plane-position-covered@pipe-a-planes.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_plane@plane-position-covered@pipe-a-planes.html * igt@kms_psr@sprite_mmap_gtt: - {shard-rkl}: [SKIP][71] ([i915#1072]) -> [PASS][72] +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@kms_psr@sprite_mmap_gtt.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-a: - {shard-tglu}: [SKIP][73] ([fdo#109274]) -> [PASS][74] +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: - {shard-rkl}: [SKIP][75] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [ABORT][77] ([i915#180]) -> [PASS][78] +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-b-query-forked: - {shard-rkl}: [SKIP][79] ([i915#1845] / [i915#4098]) -> [PASS][80] +25 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@kms_vblank@pipe-b-query-forked.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html * igt@kms_vblank@pipe-d-wait-forked-busy: - {shard-tglu}: [SKIP][81] ([i915#1845] / [i915#7651]) -> [PASS][82] +22 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_vblank@pipe-d-wait-forked-busy.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-8/igt@kms_vblank@pipe-d-wait-forked-busy.html * igt@perf@gen12-oa-tlb-invalidate: - {shard-rkl}: [SKIP][83] ([fdo#109289]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-1/igt@perf@gen12-oa-tlb-invalidate.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][85] ([i915#1722]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@perf@polling-small-buf.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@perf@polling-small-buf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#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#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7196 -> IGTPW_8614 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12864: efb4d3263a1932187dd525628e8b35d327f17a6f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8614: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html IGT_7196: 9b8c5dbe8cd82163ee198c43b81222d2b9b75fd4 @ 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_8614/index.html [-- Attachment #2: Type: text/html, Size: 23510 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.IGT: success for Handle spurious HPDs (rev2) 2023-03-16 4:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-03-16 17:37 ` Imre Deak 0 siblings, 0 replies; 8+ messages in thread From: Imre Deak @ 2023-03-16 17:37 UTC (permalink / raw) To: igt-dev On Thu, Mar 16, 2023 at 04:34:32AM +0000, Patchwork wrote: > == Series Details == > > Series: Handle spurious HPDs (rev2) > URL : https://patchwork.freedesktop.org/series/114900/ > State : success Looks ok to me: Reviewed-by: Imre Deak <imre.deak@intel.com> Thanks for the patchset, pushed it. > > == Summary == > > CI Bug Log - changes from CI_DRM_12864_full -> IGTPW_8614_full > ==================================================== > > Summary > ------- > > **SUCCESS** > > No regressions found. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html > > Participating hosts (8 -> 7) > ------------------------------ > > Missing (1): shard-rkl0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8614_full: > > ### IGT changes ### > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: > - {shard-tglu}: [PASS][1] -> [DMESG-WARN][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html > > * {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25}: > - {shard-tglu}: NOTRUN -> [SKIP][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_8614_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_fair@basic-none-vip@rcs0: > - shard-glk: [PASS][4] -> [FAIL][5] ([i915#2842]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html > > * igt@gem_lmem_swapping@verify: > - shard-apl: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl1/igt@gem_lmem_swapping@verify.html > > * igt@gem_workarounds@suspend-resume: > - shard-apl: NOTRUN -> [ABORT][7] ([i915#180]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@gem_workarounds@suspend-resume.html > > * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: > - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1937]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html > > * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: > - shard-apl: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3886]) +3 similar issues > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#3886]) +1 similar issue > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_chamelium_color@ctm-0-75: > - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271]) +76 similar issues > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl6/igt@kms_chamelium_color@ctm-0-75.html > > * igt@kms_content_protection@atomic@pipe-a-dp-1: > - shard-apl: NOTRUN -> [TIMEOUT][12] ([i915#7173]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl4/igt@kms_content_protection@atomic@pipe-a-dp-1.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: > - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +38 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html > > * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1: > - shard-apl: NOTRUN -> [FAIL][14] ([i915#7862]) +1 similar issue > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1.html > > * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: > - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#658]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html > > * igt@kms_psr2_sf@plane-move-sf-dmg-area: > - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#658]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk4/igt@kms_psr2_sf@plane-move-sf-dmg-area.html > > * igt@perf@stress-open-close: > - shard-glk: [PASS][17] -> [ABORT][18] ([i915#5213]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk4/igt@perf@stress-open-close.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk4/igt@perf@stress-open-close.html > > > #### Possible fixes #### > > * igt@drm_fdinfo@virtual-idle: > - {shard-rkl}: [FAIL][19] ([i915#7742]) -> [PASS][20] +1 similar issue > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html > > * igt@drm_read@invalid-buffer: > - {shard-rkl}: [SKIP][21] ([i915#4098]) -> [PASS][22] +1 similar issue > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-3/igt@drm_read@invalid-buffer.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@drm_read@invalid-buffer.html > > * igt@fbdev@info: > - {shard-rkl}: [SKIP][23] ([i915#2582]) -> [PASS][24] > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@fbdev@info.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-1/igt@fbdev@info.html > - {shard-tglu}: [SKIP][25] ([i915#2582]) -> [PASS][26] +1 similar issue > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@fbdev@info.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-3/igt@fbdev@info.html > > * igt@gem_ctx_isolation@preservation-s3@vecs0: > - shard-apl: [DMESG-WARN][27] ([i915#180]) -> [PASS][28] > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl3/igt@gem_ctx_isolation@preservation-s3@vecs0.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@gem_ctx_isolation@preservation-s3@vecs0.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-glk: [FAIL][29] ([i915#2842]) -> [PASS][30] > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html > - shard-apl: [SKIP][31] ([fdo#109271]) -> [PASS][32] > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl6/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_reloc@basic-write-read: > - {shard-rkl}: [SKIP][33] ([i915#3281]) -> [PASS][34] +5 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html > > * igt@gem_madvise@dontneed-before-pwrite: > - {shard-rkl}: [SKIP][35] ([i915#3282]) -> [PASS][36] +4 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html > > * igt@gem_mmap_wc@set-cache-level: > - {shard-tglu}: [SKIP][37] ([i915#1850]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@gem_mmap_wc@set-cache-level.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-8/igt@gem_mmap_wc@set-cache-level.html > - {shard-rkl}: [SKIP][39] ([i915#1850]) -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html > > * igt@gem_ppgtt@shrink-vs-evict-any: > - {shard-rkl}: [ABORT][41] -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@gem_ppgtt@shrink-vs-evict-any.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-4/igt@gem_ppgtt@shrink-vs-evict-any.html > > * igt@gem_workarounds@suspend-resume-fd: > - {shard-rkl}: [ABORT][43] ([i915#5122]) -> [PASS][44] > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html > - {shard-tglu}: [ABORT][45] ([i915#5122]) -> [PASS][46] > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@gem_workarounds@suspend-resume-fd.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-6/igt@gem_workarounds@suspend-resume-fd.html > > * igt@gen9_exec_parse@allowed-single: > - shard-apl: [ABORT][47] ([i915#5566]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@gen9_exec_parse@allowed-single.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl2/igt@gen9_exec_parse@allowed-single.html > > * igt@gen9_exec_parse@batch-without-end: > - {shard-rkl}: [SKIP][49] ([i915#2527]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html > > * igt@i915_pm_dc@dc6-dpms: > - {shard-tglu}: [FAIL][51] ([i915#3989] / [i915#454]) -> [PASS][52] > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_rpm@system-suspend-modeset: > - {shard-tglu}: [SKIP][53] ([i915#3547]) -> [PASS][54] > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@i915_pm_rpm@system-suspend-modeset.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-2/igt@i915_pm_rpm@system-suspend-modeset.html > > * igt@i915_selftest@live@gt_heartbeat: > - shard-apl: [DMESG-FAIL][55] ([i915#5334]) -> [PASS][56] > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html > > * igt@kms_draw_crc@fill-fb: > - {shard-tglu}: [SKIP][57] ([i915#1845]) -> [PASS][58] +34 similar issues > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_draw_crc@fill-fb.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-5/igt@kms_draw_crc@fill-fb.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-apl: [FAIL][59] ([i915#4767]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_fbcon_fbt@psr-suspend: > - {shard-rkl}: [SKIP][61] ([fdo#110189] / [i915#3955]) -> [PASS][62] > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: > - {shard-rkl}: [SKIP][63] ([i915#1849] / [i915#4098]) -> [PASS][64] +12 similar issues > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: > - {shard-tglu}: [SKIP][65] ([i915#1849]) -> [PASS][66] +19 similar issues > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html > > * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: > - {shard-tglu}: [SKIP][67] ([i915#1849] / [i915#3558]) -> [PASS][68] +1 similar issue > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html > > * igt@kms_plane@plane-position-covered@pipe-a-planes: > - {shard-rkl}: [SKIP][69] ([i915#1849]) -> [PASS][70] +3 similar issues > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@kms_plane@plane-position-covered@pipe-a-planes.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_plane@plane-position-covered@pipe-a-planes.html > > * igt@kms_psr@sprite_mmap_gtt: > - {shard-rkl}: [SKIP][71] ([i915#1072]) -> [PASS][72] +2 similar issues > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@kms_psr@sprite_mmap_gtt.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html > > * igt@kms_universal_plane@disable-primary-vs-flip-pipe-a: > - {shard-tglu}: [SKIP][73] ([fdo#109274]) -> [PASS][74] +1 similar issue > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html > > * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: > - {shard-rkl}: [SKIP][75] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][76] > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html > > * igt@kms_vblank@pipe-a-ts-continuation-suspend: > - shard-apl: [ABORT][77] ([i915#180]) -> [PASS][78] +1 similar issue > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html > > * igt@kms_vblank@pipe-b-query-forked: > - {shard-rkl}: [SKIP][79] ([i915#1845] / [i915#4098]) -> [PASS][80] +25 similar issues > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@kms_vblank@pipe-b-query-forked.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html > > * igt@kms_vblank@pipe-d-wait-forked-busy: > - {shard-tglu}: [SKIP][81] ([i915#1845] / [i915#7651]) -> [PASS][82] +22 similar issues > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_vblank@pipe-d-wait-forked-busy.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-tglu-8/igt@kms_vblank@pipe-d-wait-forked-busy.html > > * igt@perf@gen12-oa-tlb-invalidate: > - {shard-rkl}: [SKIP][83] ([fdo#109289]) -> [PASS][84] > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-1/igt@perf@gen12-oa-tlb-invalidate.html > > * igt@perf@polling-small-buf: > - {shard-rkl}: [FAIL][85] ([i915#1722]) -> [PASS][86] > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@perf@polling-small-buf.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/shard-rkl-5/igt@perf@polling-small-buf.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 > [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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 > [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 > [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 > [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 > [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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 > [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#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#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 > [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 > [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 > [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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 > [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 > [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 > [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 > [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 > [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 > [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7196 -> IGTPW_8614 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_12864: efb4d3263a1932187dd525628e8b35d327f17a6f @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8614: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8614/index.html > IGT_7196: 9b8c5dbe8cd82163ee198c43b81222d2b9b75fd4 @ 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_8614/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-03-16 17:38 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-09 8:37 [igt-dev] [PATCH i-g-t v3 0/2] Handle spurious HPDs Vinod Govindapillai 2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_debugfs: set provision to ignore long HPDs Vinod Govindapillai 2023-03-09 8:37 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_kms: handle spurious HPDs Vinod Govindapillai 2023-03-09 9:36 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle " Patchwork 2023-03-11 0:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-03-15 16:39 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle spurious HPDs (rev2) Patchwork 2023-03-16 4:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-03-16 17:37 ` Imre Deak
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox