* [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver
@ 2020-03-24 8:38 Arkadiusz Hiler
2020-03-24 2:36 ` Kunal Joshi
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2020-03-24 8:38 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
All the I2C errors we get from chameleond happen when it is talking the
receiver and seem to have nothing to do with the HDMI/DisplayPort
upstream.
Let's try reaching the receiver 3 times before we give up and settle on
an error.
Fixes: https://gitlab.freedesktop.org/drm/intel/issues/217
Issue: https://bugs.chromium.org/p/chromium/issues/detail?id=993738
Cc: Imre Deak <imre.deak@intel.com>
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
lib/igt_chamelium.c | 28 +++++++++++++++++++---------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index f98f6746..7d8f057d 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -280,12 +280,6 @@ static xmlrpc_value *__chamelium_rpc_va(struct chamelium *chamelium,
struct fsm_monitor_args monitor_args;
pthread_t fsm_thread_id;
- /* Cleanup the last error, if any */
- if (chamelium->env.fault_occurred) {
- xmlrpc_env_clean(&chamelium->env);
- xmlrpc_env_init(&chamelium->env);
- }
-
/* Unfortunately xmlrpc_client's event loop helpers are rather useless
* for implementing any sort of event loop, since they provide no way
* to poll for events other then the RPC response. This means in order
@@ -300,9 +294,25 @@ static xmlrpc_value *__chamelium_rpc_va(struct chamelium *chamelium,
&monitor_args);
}
- xmlrpc_client_call2f_va(&chamelium->env, chamelium->client,
- chamelium->url, method_name, format_str, &res,
- va_args);
+ for (int retries = 3; retries > 0; retries--) {
+ /* Cleanup the last error, if any */
+ if (chamelium->env.fault_occurred) {
+ xmlrpc_env_clean(&chamelium->env);
+ xmlrpc_env_init(&chamelium->env);
+ }
+
+ xmlrpc_client_call2f_va(&chamelium->env, chamelium->client,
+ chamelium->url, method_name, format_str, &res,
+ va_args);
+
+ if (!chamelium->env.fault_occurred)
+ break;
+
+ if (NULL == strstr(chamelium->env.fault_string, "I2C"))
+ break;
+
+ /* i2c error, let's try to retry */
+ }
if (fsm_port) {
pthread_cancel(fsm_thread_id);
--
2.24.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver 2020-03-24 8:38 [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver Arkadiusz Hiler @ 2020-03-24 2:36 ` Kunal Joshi 2020-03-24 9:09 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Kunal Joshi @ 2020-03-24 2:36 UTC (permalink / raw) To: Arkadiusz Hiler, igt-dev, imre.deak, petri.latvala On 2020-03-24 at 10:38:48 +0200, Arkadiusz Hiler wrote: > All the I2C errors we get from chameleond happen when it is talking the > receiver and seem to have nothing to do with the HDMI/DisplayPort > upstream. > > Let's try reaching the receiver 3 times before we give up and settle on > an error. > > Fixes: https://gitlab.freedesktop.org/drm/intel/issues/217 > Issue: https://bugs.chromium.org/p/chromium/issues/detail?id=993738 > Cc: Imre Deak <imre.deak@intel.com> > Cc: Kunal Joshi <kunal1.joshi@intel.com> > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> > --- Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for chamelium: Retry XMLRPC call when chamelond fails talking with a receiver 2020-03-24 8:38 [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver Arkadiusz Hiler 2020-03-24 2:36 ` Kunal Joshi @ 2020-03-24 9:09 ` Patchwork 2020-03-24 9:12 ` [igt-dev] [PATCH i-g-t] " Petri Latvala 2020-03-24 10:11 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-03-24 9:09 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: chamelium: Retry XMLRPC call when chamelond fails talking with a receiver URL : https://patchwork.freedesktop.org/series/74999/ State : success == Summary == CI Bug Log - changes from IGT_5532 -> IGTPW_4344 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/index.html Known issues ------------ Here are the changes found in IGTPW_4344 that come from known issues: ### IGT changes ### #### Warnings #### * igt@i915_selftest@live@gem_contexts: - fi-cfl-8700k: [INCOMPLETE][1] ([i915#424]) -> [DMESG-FAIL][2] ([i915#481]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html - fi-cfl-guc: [DMESG-FAIL][3] ([i915#481]) -> [DMESG-FAIL][4] ([i915#730] / [i915#933]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html - fi-skl-lmem: [DMESG-FAIL][5] ([i915#933]) -> [DMESG-FAIL][6] ([i915#481]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/fi-skl-lmem/igt@i915_selftest@live@gem_contexts.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/fi-skl-lmem/igt@i915_selftest@live@gem_contexts.html * igt@kms_chamelium@dp-crc-fast: - fi-cml-u2: [FAIL][7] ([i915#217]) -> [FAIL][8] ([i915#262]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@vga-hpd-fast: - fi-cml-u2: [FAIL][9] ([i915#217]) -> [SKIP][10] ([fdo#109309]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/fi-cml-u2/igt@kms_chamelium@vga-hpd-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/fi-cml-u2/igt@kms_chamelium@vga-hpd-fast.html [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424 [i915#481]: https://gitlab.freedesktop.org/drm/intel/issues/481 [i915#730]: https://gitlab.freedesktop.org/drm/intel/issues/730 [i915#933]: https://gitlab.freedesktop.org/drm/intel/issues/933 Participating hosts (48 -> 43) ------------------------------ Missing (5): fi-hsw-4200u fi-bsw-cyan fi-icl-u2 fi-ctg-p8600 fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5532 -> IGTPW_4344 CI-20190529: 20190529 CI_DRM_8182: e5245084567cd7f6f93b07baaebf8a2b4d914620 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4344: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/index.html IGT_5532: 6098e286e0999eb2ad9dcd1aa714468f1412a2ef @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver 2020-03-24 8:38 [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver Arkadiusz Hiler 2020-03-24 2:36 ` Kunal Joshi 2020-03-24 9:09 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-03-24 9:12 ` Petri Latvala 2020-03-24 10:11 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Petri Latvala @ 2020-03-24 9:12 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev, Kunal Joshi On Tue, Mar 24, 2020 at 10:38:48AM +0200, Arkadiusz Hiler wrote: > All the I2C errors we get from chameleond happen when it is talking the > receiver and seem to have nothing to do with the HDMI/DisplayPort > upstream. > > Let's try reaching the receiver 3 times before we give up and settle on > an error. > > Fixes: https://gitlab.freedesktop.org/drm/intel/issues/217 > Issue: https://bugs.chromium.org/p/chromium/issues/detail?id=993738 > Cc: Imre Deak <imre.deak@intel.com> > Cc: Kunal Joshi <kunal1.joshi@intel.com> > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> > --- > lib/igt_chamelium.c | 28 +++++++++++++++++++--------- > 1 file changed, 19 insertions(+), 9 deletions(-) > > diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c > index f98f6746..7d8f057d 100644 > --- a/lib/igt_chamelium.c > +++ b/lib/igt_chamelium.c > @@ -280,12 +280,6 @@ static xmlrpc_value *__chamelium_rpc_va(struct chamelium *chamelium, > struct fsm_monitor_args monitor_args; > pthread_t fsm_thread_id; > > - /* Cleanup the last error, if any */ > - if (chamelium->env.fault_occurred) { > - xmlrpc_env_clean(&chamelium->env); > - xmlrpc_env_init(&chamelium->env); > - } > - > /* Unfortunately xmlrpc_client's event loop helpers are rather useless > * for implementing any sort of event loop, since they provide no way > * to poll for events other then the RPC response. This means in order > @@ -300,9 +294,25 @@ static xmlrpc_value *__chamelium_rpc_va(struct chamelium *chamelium, > &monitor_args); > } > > - xmlrpc_client_call2f_va(&chamelium->env, chamelium->client, > - chamelium->url, method_name, format_str, &res, > - va_args); > + for (int retries = 3; retries > 0; retries--) { > + /* Cleanup the last error, if any */ > + if (chamelium->env.fault_occurred) { > + xmlrpc_env_clean(&chamelium->env); > + xmlrpc_env_init(&chamelium->env); > + } > + > + xmlrpc_client_call2f_va(&chamelium->env, chamelium->client, > + chamelium->url, method_name, format_str, &res, > + va_args); > + > + if (!chamelium->env.fault_occurred) > + break; > + > + if (NULL == strstr(chamelium->env.fault_string, "I2C")) > + break; > + > + /* i2c error, let's try to retry */ > + } > > if (fsm_port) { > pthread_cancel(fsm_thread_id); > -- > 2.24.1 > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for chamelium: Retry XMLRPC call when chamelond fails talking with a receiver 2020-03-24 8:38 [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver Arkadiusz Hiler ` (2 preceding siblings ...) 2020-03-24 9:12 ` [igt-dev] [PATCH i-g-t] " Petri Latvala @ 2020-03-24 10:11 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-03-24 10:11 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: chamelium: Retry XMLRPC call when chamelond fails talking with a receiver URL : https://patchwork.freedesktop.org/series/74999/ State : failure == Summary == CI Bug Log - changes from IGT_5532_full -> IGTPW_4344_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4344_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4344_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_4344/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4344_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rc6_residency@rc6-idle: - shard-snb: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-snb1/igt@i915_pm_rc6_residency@rc6-idle.html Known issues ------------ Here are the changes found in IGTPW_4344_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@extended-parallel-vcs1: - shard-iclb: [PASS][2] -> [SKIP][3] ([fdo#112080]) +10 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@gem_busy@extended-parallel-vcs1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb5/igt@gem_busy@extended-parallel-vcs1.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#110841]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#110854]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@gem_exec_balancer@smoke.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb7/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@implicit-both-bsd1: - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#109276] / [i915#677]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd1.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112146]) +9 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-tglb: [PASS][12] -> [SKIP][13] ([i915#1316]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html - shard-iclb: [PASS][14] -> [SKIP][15] ([i915#1316]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb3/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_selftest@live@execlists: - shard-apl: [PASS][16] -> [INCOMPLETE][17] ([fdo#103927] / [i915#656]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl3/igt@i915_selftest@live@execlists.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl6/igt@i915_selftest@live@execlists.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-kbl: [PASS][18] -> [FAIL][19] ([i915#1119]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-kbl6/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-kbl2/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [PASS][20] -> [INCOMPLETE][21] ([i915#155]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: [PASS][22] -> [FAIL][23] ([i915#96]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-hsw5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#79]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@dpms-off-confusion: - shard-kbl: [PASS][26] -> [DMESG-WARN][27] ([i915#1297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-kbl6/igt@kms_flip@dpms-off-confusion.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-kbl1/igt@kms_flip@dpms-off-confusion.html - shard-apl: [PASS][28] -> [DMESG-WARN][29] ([i915#1297]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl4/igt@kms_flip@dpms-off-confusion.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl4/igt@kms_flip@dpms-off-confusion.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-glk: [PASS][30] -> [FAIL][31] ([i915#49]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-kbl: [PASS][32] -> [DMESG-WARN][33] ([i915#180]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][34] -> [DMESG-WARN][35] ([i915#180]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [PASS][36] -> [SKIP][37] ([fdo#109441]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb4/igt@kms_psr@psr2_cursor_blt.html * igt@kms_setmode@basic: - shard-apl: [PASS][38] -> [FAIL][39] ([i915#31]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl3/igt@kms_setmode@basic.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl8/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-query-busy: - shard-hsw: [PASS][40] -> [INCOMPLETE][41] ([i915#61]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-hsw7/igt@kms_vblank@pipe-a-query-busy.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-hsw1/igt@kms_vblank@pipe-a-query-busy.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][42] -> [SKIP][43] ([fdo#109276]) +16 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@prime_busy@hang-bsd2.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb6/igt@prime_busy@hang-bsd2.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][44] ([fdo#112080]) -> [PASS][45] +16 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb5/igt@gem_busy@busy-vcs1.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb4/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_persistence@engines-mixed-process@vcs0: - shard-apl: [FAIL][46] -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl7/igt@gem_ctx_persistence@engines-mixed-process@vcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl8/igt@gem_ctx_persistence@engines-mixed-process@vcs0.html * igt@gem_ctx_persistence@engines-mixed-process@vecs0: - shard-apl: [INCOMPLETE][48] ([fdo#103927] / [i915#1197] / [i915#1239]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl7/igt@gem_ctx_persistence@engines-mixed-process@vecs0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl8/igt@gem_ctx_persistence@engines-mixed-process@vecs0.html * igt@gem_exec_schedule@implicit-read-write-bsd2: - shard-iclb: [SKIP][50] ([fdo#109276] / [i915#677]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb7/igt@gem_exec_schedule@implicit-read-write-bsd2.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html * igt@gem_exec_schedule@pi-distinct-iova-bsd: - shard-iclb: [SKIP][52] ([i915#677]) -> [PASS][53] +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@gem_exec_schedule@pi-distinct-iova-bsd.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb8/igt@gem_exec_schedule@pi-distinct-iova-bsd.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][54] ([fdo#112146]) -> [PASS][55] +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb6/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-hsw: [FAIL][56] -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-hsw6/igt@i915_pm_rc6_residency@rc6-idle.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-hsw7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@modeset-lpsp: - shard-tglb: [SKIP][58] ([i915#1316]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-tglb8/igt@i915_pm_rpm@modeset-lpsp.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-tglb5/igt@i915_pm_rpm@modeset-lpsp.html - shard-iclb: [SKIP][60] ([i915#1316]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb6/igt@i915_pm_rpm@modeset-lpsp.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb7/igt@i915_pm_rpm@modeset-lpsp.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: - shard-kbl: [FAIL][62] ([i915#54]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html - shard-apl: [FAIL][64] ([i915#54]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][66] ([i915#72]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [DMESG-WARN][68] ([i915#180]) -> [PASS][69] +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-kbl: [DMESG-WARN][70] ([i915#180]) -> [PASS][71] +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][72] ([fdo#109441]) -> [PASS][73] +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - shard-tglb: [SKIP][74] ([fdo#112015]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html * igt@perf@gen12-mi-rpc: - shard-tglb: [FAIL][76] ([i915#1085]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-tglb2/igt@perf@gen12-mi-rpc.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-tglb3/igt@perf@gen12-mi-rpc.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][78] ([fdo#109276]) -> [PASS][79] +20 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-iclb6/igt@prime_vgem@fence-wait-bsd2.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_userptr_blits@dmabuf-sync: - shard-hsw: [DMESG-WARN][80] ([fdo#110789] / [fdo#111870]) -> [DMESG-WARN][81] ([fdo#111870]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-hsw5/igt@gem_userptr_blits@dmabuf-sync.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-hsw8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@sync-unmap: - shard-hsw: [DMESG-WARN][82] ([fdo#111870]) -> [DMESG-WARN][83] ([fdo#110789] / [fdo#111870]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-hsw6/igt@gem_userptr_blits@sync-unmap.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][84] ([i915#468]) -> [FAIL][85] ([i915#454]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html * igt@runner@aborted: - shard-apl: [FAIL][86] ([fdo#103927]) -> ([FAIL][87], [FAIL][88]) ([fdo#103927] / [i915#529]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5532/shard-apl6/igt@runner@aborted.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl7/igt@runner@aborted.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/shard-apl6/igt@runner@aborted.html [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085 [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119 [i915#1197]: https://gitlab.freedesktop.org/drm/intel/issues/1197 [i915#1239]: https://gitlab.freedesktop.org/drm/intel/issues/1239 [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#529]: https://gitlab.freedesktop.org/drm/intel/issues/529 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5532 -> IGTPW_4344 CI-20190529: 20190529 CI_DRM_8182: e5245084567cd7f6f93b07baaebf8a2b4d914620 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4344: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/index.html IGT_5532: 6098e286e0999eb2ad9dcd1aa714468f1412a2ef @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4344/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-03-24 10:11 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-03-24 8:38 [igt-dev] [PATCH i-g-t] chamelium: Retry XMLRPC call when chamelond fails talking with a receiver Arkadiusz Hiler 2020-03-24 2:36 ` Kunal Joshi 2020-03-24 9:09 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-03-24 9:12 ` [igt-dev] [PATCH i-g-t] " Petri Latvala 2020-03-24 10:11 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox