* [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors
@ 2023-03-23 16:18 Imre Deak
2023-03-23 16:18 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error Imre Deak
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Imre Deak @ 2023-03-23 16:18 UTC (permalink / raw)
To: igt-dev
For clarity, factor out a helper to check if the AUX transfer failed
due to not detecting the sink being connected.
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
tests/kms_dp_aux_dev.c | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/tests/kms_dp_aux_dev.c b/tests/kms_dp_aux_dev.c
index 850ec8e26..86e111bf2 100644
--- a/tests/kms_dp_aux_dev.c
+++ b/tests/kms_dp_aux_dev.c
@@ -42,6 +42,19 @@ static bool is_mst_connector(int drm_fd, uint32_t connector_id)
NULL, NULL);
}
+static bool sink_detect_error(int drm_fd, uint32_t connector_id, int error_code)
+{
+ switch (error_code) {
+ case ETIMEDOUT:
+ return true;
+ case EIO:
+ return is_mst_connector(drm_fd, connector_id) ||
+ is_amdgpu_device(drm_fd);
+ default:
+ return false;
+ };
+}
+
static bool test(int drm_fd, uint32_t connector_id)
{
drmModeConnector *connector;
@@ -85,9 +98,7 @@ static bool test(int drm_fd, uint32_t connector_id)
ret > 0 ? "success" : strerror(errno));
igt_assert(ret == sizeof(buf) ||
- errno == ETIMEDOUT ||
- (errno == EIO && (is_mst_connector(drm_fd, connector_id) ||
- is_amdgpu_device(drm_fd))));
+ sink_detect_error(drm_fd, connector_id, errno));
close(fd);
--
2.37.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error 2023-03-23 16:18 [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Imre Deak @ 2023-03-23 16:18 ` Imre Deak 2023-03-23 23:11 ` Sripada, Radhakrishna 2023-03-23 17:12 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Imre Deak @ 2023-03-23 16:18 UTC (permalink / raw) To: igt-dev The Nouveau/gm200 and the i915 drivers' AUX handlers return -ENXIO if there was no sink detected. The other drivers don't use this error code in the same handler, so assume this error always means a sink detect error. Signed-off-by: Imre Deak <imre.deak@intel.com> --- tests/kms_dp_aux_dev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/kms_dp_aux_dev.c b/tests/kms_dp_aux_dev.c index 86e111bf2..69edc1585 100644 --- a/tests/kms_dp_aux_dev.c +++ b/tests/kms_dp_aux_dev.c @@ -46,6 +46,7 @@ static bool sink_detect_error(int drm_fd, uint32_t connector_id, int error_code) { switch (error_code) { case ETIMEDOUT: + case ENXIO: return true; case EIO: return is_mst_connector(drm_fd, connector_id) || -- 2.37.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error 2023-03-23 16:18 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error Imre Deak @ 2023-03-23 23:11 ` Sripada, Radhakrishna 0 siblings, 0 replies; 7+ messages in thread From: Sripada, Radhakrishna @ 2023-03-23 23:11 UTC (permalink / raw) To: Deak, Imre, igt-dev@lists.freedesktop.org > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Imre Deak > Sent: Thursday, March 23, 2023 9:18 AM > To: igt-dev@lists.freedesktop.org > Subject: [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a > sink detect error > > The Nouveau/gm200 and the i915 drivers' AUX handlers return -ENXIO if > there was no sink detected. The other drivers don't use this error code > in the same handler, so assume this error always means a sink detect > error. > Reviewed-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> > Signed-off-by: Imre Deak <imre.deak@intel.com> > --- > tests/kms_dp_aux_dev.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tests/kms_dp_aux_dev.c b/tests/kms_dp_aux_dev.c > index 86e111bf2..69edc1585 100644 > --- a/tests/kms_dp_aux_dev.c > +++ b/tests/kms_dp_aux_dev.c > @@ -46,6 +46,7 @@ static bool sink_detect_error(int drm_fd, uint32_t > connector_id, int error_code) > { > switch (error_code) { > case ETIMEDOUT: > + case ENXIO: > return true; > case EIO: > return is_mst_connector(drm_fd, connector_id) || > -- > 2.37.1 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors 2023-03-23 16:18 [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Imre Deak 2023-03-23 16:18 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error Imre Deak @ 2023-03-23 17:12 ` Patchwork 2023-03-23 22:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-03-23 23:10 ` [igt-dev] [PATCH i-g-t 1/2] " Sripada, Radhakrishna 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-23 17:12 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4534 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors URL : https://patchwork.freedesktop.org/series/115557/ State : success == Summary == CI Bug Log - changes from IGT_7212 -> IGTPW_8669 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html Participating hosts (36 -> 36) ------------------------------ Additional (1): fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8669 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@slpc: - bat-rpls-2: NOTRUN -> [DMESG-FAIL][1] ([i915#6367] / [i915#7913]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-2/igt@i915_selftest@live@slpc.html - bat-rpls-1: [PASS][2] -> [DMESG-FAIL][3] ([i915#6367] / [i915#7996]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/bat-rpls-1/igt@i915_selftest@live@slpc.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-rpls-2: NOTRUN -> [SKIP][4] ([i915#7828]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - bat-rpls-1: NOTRUN -> [SKIP][5] ([i915#7828]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1: - bat-dg2-8: [PASS][6] -> [FAIL][7] ([i915#7932]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][8] ([i915#1845]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html - bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#1845]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][10] ([fdo#109271]) +38 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/fi-pnv-d510/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: [ABORT][11] ([i915#6687] / [i915#7978]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@reset: - bat-rpls-2: [ABORT][13] ([i915#4983] / [i915#7913]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/bat-rpls-2/igt@i915_selftest@live@reset.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/bat-rpls-2/igt@i915_selftest@live@reset.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7212 -> IGTPW_8669 CI-20190529: 20190529 CI_DRM_12905: 3a266f994a6b752953eb974ab7bf1dc382a2d1b8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8669: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html IGT_7212: c67b6c8993c509ca06eca222287c58ade43292e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html [-- Attachment #2: Type: text/html, Size: 5627 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors 2023-03-23 16:18 [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Imre Deak 2023-03-23 16:18 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error Imre Deak 2023-03-23 17:12 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Patchwork @ 2023-03-23 22:04 ` Patchwork 2023-03-23 23:18 ` Imre Deak 2023-03-23 23:10 ` [igt-dev] [PATCH i-g-t 1/2] " Sripada, Radhakrishna 3 siblings, 1 reply; 7+ messages in thread From: Patchwork @ 2023-03-23 22:04 UTC (permalink / raw) To: Imre Deak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27923 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors URL : https://patchwork.freedesktop.org/series/115557/ State : success == Summary == CI Bug Log - changes from IGT_7212_full -> IGTPW_8669_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8669_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][1] -> [FAIL][2] ([i915#2842]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_userptr_blits@access-control: - shard-glk: NOTRUN -> [SKIP][3] ([fdo#109271]) +16 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk9/igt@gem_userptr_blits@access-control.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][4] -> [ABORT][5] ([i915#5566]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@gen9_exec_parse@allowed-single.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][6] -> [ABORT][7] ([i915#5566]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@gen9_exec_parse@allowed-single.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk5/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][8] -> [INCOMPLETE][9] ([i915#7790]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-snb5/igt@i915_pm_rps@reset.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [PASS][10] -> [INCOMPLETE][11] ([i915#4528] / [i915#4817]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-snb7/igt@i915_suspend@basic-s3-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][14] -> [FAIL][15] ([i915#2346]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271]) +24 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html #### Possible fixes #### * igt@api_intel_bb@object-reloc-keep-cache: - {shard-rkl}: [SKIP][17] ([i915#3281]) -> [PASS][18] +4 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@fbdev@eof: - {shard-rkl}: [SKIP][19] ([i915#2582]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@fbdev@eof.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-4/igt@fbdev@eof.html * igt@fbdev@write: - {shard-tglu}: [SKIP][21] ([i915#2582]) -> [PASS][22] +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@fbdev@write.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-5/igt@fbdev@write.html * {igt@gem_barrier_race@remote-request@rcs0}: - shard-glk: [ABORT][23] ([i915#8190]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk3/igt@gem_barrier_race@remote-request@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk4/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][25] ([i915#6268]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][27] ([i915#5784]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-dg1-15/igt@gem_eio@reset-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_eio@suspend: - {shard-rkl}: [FAIL][29] ([i915#5115] / [i915#7052]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@gem_eio@suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@gem_eio@suspend.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][31] ([i915#2846]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@gem_exec_fair@basic-deadline.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][33] ([i915#2842]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][35] ([i915#2842]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html - {shard-tglu}: [FAIL][37] ([i915#2842]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - {shard-rkl}: [SKIP][39] ([i915#3282]) -> [PASS][40] +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_workarounds@suspend-resume: - {shard-rkl}: [FAIL][41] ([fdo#103375]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@gem_workarounds@suspend-resume.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-3/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-invalid-length: - {shard-rkl}: [SKIP][43] ([i915#2527]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_pm_dc@dc5-dpms: - {shard-rkl}: [FAIL][45] ([i915#7330]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@i915_pm_dc@dc5-dpms.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-1/igt@i915_pm_dc@dc5-dpms.html * {igt@i915_pm_dc@dc5-dpms-negative}: - {shard-tglu}: [SKIP][47] ([i915#8018]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@i915_pm_dc@dc5-dpms-negative.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-3/igt@i915_pm_dc@dc5-dpms-negative.html * igt@i915_pm_dc@dc6-dpms: - {shard-rkl}: [SKIP][49] ([i915#3361]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][51] ([fdo#109271]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-tglu}: [SKIP][53] ([i915#1397]) -> [PASS][54] +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs: - {shard-rkl}: [SKIP][55] ([i915#1845] / [i915#4098]) -> [PASS][56] +21 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs: - {shard-tglu}: [SKIP][57] ([i915#1845] / [i915#7651]) -> [PASS][58] +35 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1: - shard-apl: [ABORT][59] ([i915#180]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][61] ([i915#2346]) -> [PASS][62] +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][63] ([i915#2346]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@forked-bo@pipe-b: - {shard-rkl}: [INCOMPLETE][65] ([i915#8011]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-6/igt@kms_cursor_legacy@forked-bo@pipe-b.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-4/igt@kms_cursor_legacy@forked-bo@pipe-b.html * igt@kms_cursor_legacy@single-bo@pipe-a: - {shard-rkl}: [INCOMPLETE][67] -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-1/igt@kms_cursor_legacy@single-bo@pipe-a.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-2/igt@kms_cursor_legacy@single-bo@pipe-a.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-tglu}: [INCOMPLETE][69] ([i915#8011]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@kms_cursor_legacy@single-bo@pipe-b.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-9/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_fbcon_fbt@psr: - {shard-rkl}: [SKIP][71] ([i915#3955]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][73] ([i915#2122]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [FAIL][75] ([i915#79]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [FAIL][77] ([i915#79]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: - {shard-tglu}: [SKIP][79] ([i915#1849]) -> [PASS][80] +13 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - {shard-rkl}: [SKIP][81] ([i915#1849] / [i915#4098]) -> [PASS][82] +18 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][83] ([i915#1072]) -> [PASS][84] +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@kms_psr@primary_render.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_vblank@pipe-d-wait-busy: - {shard-tglu}: [SKIP][85] ([i915#1845]) -> [PASS][86] +27 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-10/igt@kms_vblank@pipe-d-wait-busy.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-7/igt@kms_vblank@pipe-d-wait-busy.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][87] ([i915#4349]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-2/igt@perf_pmu@idle@rcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-2/igt@perf_pmu@idle@rcs0.html * igt@prime_mmap_kms@buffer-sharing: - {shard-tglu}: [SKIP][89] ([fdo#109274]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@prime_mmap_kms@buffer-sharing.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-5/igt@prime_mmap_kms@buffer-sharing.html * igt@testdisplay: - {shard-rkl}: [SKIP][91] ([i915#4098]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@testdisplay.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [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#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#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#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#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [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#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [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#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [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#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [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#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#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#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [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#7988]: https://gitlab.freedesktop.org/drm/intel/issues/7988 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7212 -> IGTPW_8669 CI-20190529: 20190529 CI_DRM_12905: 3a266f994a6b752953eb974ab7bf1dc382a2d1b8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8669: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html IGT_7212: c67b6c8993c509ca06eca222287c58ade43292e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html [-- Attachment #2: Type: text/html, Size: 23098 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors 2023-03-23 22:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-03-23 23:18 ` Imre Deak 0 siblings, 0 replies; 7+ messages in thread From: Imre Deak @ 2023-03-23 23:18 UTC (permalink / raw) To: igt-dev, Radhakrishna Sripada On Thu, Mar 23, 2023 at 10:04:21PM +0000, Patchwork wrote: > == Series Details == > > Series: series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors > URL : https://patchwork.freedesktop.org/series/115557/ > State : success Thanks for the review, patchset is pushed. > > == Summary == > > CI Bug Log - changes from IGT_7212_full -> IGTPW_8669_full > ==================================================== > > Summary > ------- > > **SUCCESS** > > No regressions found. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html > > Participating hosts (7 -> 7) > ------------------------------ > > No changes in participating hosts > > Known issues > ------------ > > Here are the changes found in IGTPW_8669_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_fair@basic-pace@vcs0: > - shard-glk: [PASS][1] -> [FAIL][2] ([i915#2842]) +2 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html > > * igt@gem_userptr_blits@access-control: > - shard-glk: NOTRUN -> [SKIP][3] ([fdo#109271]) +16 similar issues > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk9/igt@gem_userptr_blits@access-control.html > > * igt@gen9_exec_parse@allowed-single: > - shard-apl: [PASS][4] -> [ABORT][5] ([i915#5566]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@gen9_exec_parse@allowed-single.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@gen9_exec_parse@allowed-single.html > - shard-glk: [PASS][6] -> [ABORT][7] ([i915#5566]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@gen9_exec_parse@allowed-single.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk5/igt@gen9_exec_parse@allowed-single.html > > * igt@i915_pm_rps@reset: > - shard-snb: [PASS][8] -> [INCOMPLETE][9] ([i915#7790]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-snb5/igt@i915_pm_rps@reset.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-snb4/igt@i915_pm_rps@reset.html > > * igt@i915_suspend@basic-s3-without-i915: > - shard-snb: [PASS][10] -> [INCOMPLETE][11] ([i915#4528] / [i915#4817]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-snb7/igt@i915_suspend@basic-s3-without-i915.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html > > * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: > - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [PASS][14] -> [FAIL][15] ([i915#2346]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: > - shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271]) +24 similar issues > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html > > > #### Possible fixes #### > > * igt@api_intel_bb@object-reloc-keep-cache: > - {shard-rkl}: [SKIP][17] ([i915#3281]) -> [PASS][18] +4 similar issues > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html > > * igt@fbdev@eof: > - {shard-rkl}: [SKIP][19] ([i915#2582]) -> [PASS][20] > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@fbdev@eof.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-4/igt@fbdev@eof.html > > * igt@fbdev@write: > - {shard-tglu}: [SKIP][21] ([i915#2582]) -> [PASS][22] +1 similar issue > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@fbdev@write.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-5/igt@fbdev@write.html > > * {igt@gem_barrier_race@remote-request@rcs0}: > - shard-glk: [ABORT][23] ([i915#8190]) -> [PASS][24] > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk3/igt@gem_barrier_race@remote-request@rcs0.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk4/igt@gem_barrier_race@remote-request@rcs0.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - {shard-tglu}: [FAIL][25] ([i915#6268]) -> [PASS][26] > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_eio@reset-stress: > - {shard-dg1}: [FAIL][27] ([i915#5784]) -> [PASS][28] > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-dg1-15/igt@gem_eio@reset-stress.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-dg1-18/igt@gem_eio@reset-stress.html > > * igt@gem_eio@suspend: > - {shard-rkl}: [FAIL][29] ([i915#5115] / [i915#7052]) -> [PASS][30] > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@gem_eio@suspend.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@gem_eio@suspend.html > > * igt@gem_exec_fair@basic-deadline: > - shard-glk: [FAIL][31] ([i915#2846]) -> [PASS][32] > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@gem_exec_fair@basic-deadline.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk3/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-none-solo@rcs0: > - shard-apl: [FAIL][33] ([i915#2842]) -> [PASS][34] > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-glk: [FAIL][35] ([i915#2842]) -> [PASS][36] > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html > - {shard-tglu}: [FAIL][37] ([i915#2842]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: > - {shard-rkl}: [SKIP][39] ([i915#3282]) -> [PASS][40] +1 similar issue > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html > > * igt@gem_workarounds@suspend-resume: > - {shard-rkl}: [FAIL][41] ([fdo#103375]) -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@gem_workarounds@suspend-resume.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-3/igt@gem_workarounds@suspend-resume.html > > * igt@gen9_exec_parse@batch-invalid-length: > - {shard-rkl}: [SKIP][43] ([i915#2527]) -> [PASS][44] +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html > > * igt@i915_pm_dc@dc5-dpms: > - {shard-rkl}: [FAIL][45] ([i915#7330]) -> [PASS][46] > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@i915_pm_dc@dc5-dpms.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-1/igt@i915_pm_dc@dc5-dpms.html > > * {igt@i915_pm_dc@dc5-dpms-negative}: > - {shard-tglu}: [SKIP][47] ([i915#8018]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@i915_pm_dc@dc5-dpms-negative.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-3/igt@i915_pm_dc@dc5-dpms-negative.html > > * igt@i915_pm_dc@dc6-dpms: > - {shard-rkl}: [SKIP][49] ([i915#3361]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-2/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [SKIP][51] ([fdo#109271]) -> [PASS][52] > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@i915_pm_dc@dc9-dpms.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - {shard-tglu}: [SKIP][53] ([i915#1397]) -> [PASS][54] +1 similar issue > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs: > - {shard-rkl}: [SKIP][55] ([i915#1845] / [i915#4098]) -> [PASS][56] +21 similar issues > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html > > * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs: > - {shard-tglu}: [SKIP][57] ([i915#1845] / [i915#7651]) -> [PASS][58] +35 similar issues > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html > > * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1: > - shard-apl: [ABORT][59] ([i915#180]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-glk: [FAIL][61] ([i915#2346]) -> [PASS][62] +1 similar issue > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > - shard-apl: [FAIL][63] ([i915#2346]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_cursor_legacy@forked-bo@pipe-b: > - {shard-rkl}: [INCOMPLETE][65] ([i915#8011]) -> [PASS][66] > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-6/igt@kms_cursor_legacy@forked-bo@pipe-b.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-4/igt@kms_cursor_legacy@forked-bo@pipe-b.html > > * igt@kms_cursor_legacy@single-bo@pipe-a: > - {shard-rkl}: [INCOMPLETE][67] -> [PASS][68] > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-1/igt@kms_cursor_legacy@single-bo@pipe-a.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-2/igt@kms_cursor_legacy@single-bo@pipe-a.html > > * igt@kms_cursor_legacy@single-bo@pipe-b: > - {shard-tglu}: [INCOMPLETE][69] ([i915#8011]) -> [PASS][70] > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@kms_cursor_legacy@single-bo@pipe-b.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-9/igt@kms_cursor_legacy@single-bo@pipe-b.html > > * igt@kms_fbcon_fbt@psr: > - {shard-rkl}: [SKIP][71] ([i915#3955]) -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@kms_fbcon_fbt@psr.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_fbcon_fbt@psr.html > > * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2: > - shard-glk: [FAIL][73] ([i915#2122]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: > - shard-glk: [FAIL][75] ([i915#79]) -> [PASS][76] > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: > - shard-apl: [FAIL][77] ([i915#79]) -> [PASS][78] > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html > > * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: > - {shard-tglu}: [SKIP][79] ([i915#1849]) -> [PASS][80] +13 similar issues > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: > - {shard-rkl}: [SKIP][81] ([i915#1849] / [i915#4098]) -> [PASS][82] +18 similar issues > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html > > * igt@kms_psr@primary_render: > - {shard-rkl}: [SKIP][83] ([i915#1072]) -> [PASS][84] +2 similar issues > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@kms_psr@primary_render.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-6/igt@kms_psr@primary_render.html > > * igt@kms_vblank@pipe-d-wait-busy: > - {shard-tglu}: [SKIP][85] ([i915#1845]) -> [PASS][86] +27 similar issues > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-10/igt@kms_vblank@pipe-d-wait-busy.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-7/igt@kms_vblank@pipe-d-wait-busy.html > > * igt@perf_pmu@idle@rcs0: > - {shard-rkl}: [FAIL][87] ([i915#4349]) -> [PASS][88] > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-2/igt@perf_pmu@idle@rcs0.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-rkl-2/igt@perf_pmu@idle@rcs0.html > > * igt@prime_mmap_kms@buffer-sharing: > - {shard-tglu}: [SKIP][89] ([fdo#109274]) -> [PASS][90] > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@prime_mmap_kms@buffer-sharing.html > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/shard-tglu-5/igt@prime_mmap_kms@buffer-sharing.html > > * igt@testdisplay: > - {shard-rkl}: [SKIP][91] ([i915#4098]) -> [PASS][92] > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@testdisplay.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/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). > > [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [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 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 > [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#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#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#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#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 > [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 > [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#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 > [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 > [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#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 > [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 > [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#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 > [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#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#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#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 > [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#7988]: https://gitlab.freedesktop.org/drm/intel/issues/7988 > [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 > [i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018 > [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 > [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 > [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7212 -> IGTPW_8669 > > CI-20190529: 20190529 > CI_DRM_12905: 3a266f994a6b752953eb974ab7bf1dc382a2d1b8 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8669: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html > IGT_7212: c67b6c8993c509ca06eca222287c58ade43292e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8669/index.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors 2023-03-23 16:18 [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Imre Deak ` (2 preceding siblings ...) 2023-03-23 22:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-03-23 23:10 ` Sripada, Radhakrishna 3 siblings, 0 replies; 7+ messages in thread From: Sripada, Radhakrishna @ 2023-03-23 23:10 UTC (permalink / raw) To: Deak, Imre, igt-dev@lists.freedesktop.org > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Imre Deak > Sent: Thursday, March 23, 2023 9:18 AM > To: igt-dev@lists.freedesktop.org > Subject: [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper > checking for sink detect errors > > For clarity, factor out a helper to check if the AUX transfer failed > due to not detecting the sink being connected. > Reviewed-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> > Signed-off-by: Imre Deak <imre.deak@intel.com> > --- > tests/kms_dp_aux_dev.c | 17 ++++++++++++++--- > 1 file changed, 14 insertions(+), 3 deletions(-) > > diff --git a/tests/kms_dp_aux_dev.c b/tests/kms_dp_aux_dev.c > index 850ec8e26..86e111bf2 100644 > --- a/tests/kms_dp_aux_dev.c > +++ b/tests/kms_dp_aux_dev.c > @@ -42,6 +42,19 @@ static bool is_mst_connector(int drm_fd, uint32_t > connector_id) > NULL, NULL); > } > > +static bool sink_detect_error(int drm_fd, uint32_t connector_id, int > error_code) > +{ > + switch (error_code) { > + case ETIMEDOUT: > + return true; > + case EIO: > + return is_mst_connector(drm_fd, connector_id) || > + is_amdgpu_device(drm_fd); > + default: > + return false; > + }; > +} > + > static bool test(int drm_fd, uint32_t connector_id) > { > drmModeConnector *connector; > @@ -85,9 +98,7 @@ static bool test(int drm_fd, uint32_t connector_id) > ret > 0 ? "success" : strerror(errno)); > > igt_assert(ret == sizeof(buf) || > - errno == ETIMEDOUT || > - (errno == EIO && (is_mst_connector(drm_fd, > connector_id) || > - is_amdgpu_device(drm_fd)))); > + sink_detect_error(drm_fd, connector_id, errno)); > > close(fd); > > -- > 2.37.1 ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-03-23 23:18 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-23 16:18 [igt-dev] [PATCH i-g-t 1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Imre Deak 2023-03-23 16:18 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_dp_aux_dev: Treat ENXIO as a sink detect error Imre Deak 2023-03-23 23:11 ` Sripada, Radhakrishna 2023-03-23 17:12 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_dp_aux_dev: Factor out helper checking for sink detect errors Patchwork 2023-03-23 22:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-03-23 23:18 ` Imre Deak 2023-03-23 23:10 ` [igt-dev] [PATCH i-g-t 1/2] " Sripada, Radhakrishna
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox