[igt-dev] [PATCH i-g-t] lib/igt_chamelium: Retry DP FSM on Failure
Petri Latvala
petri.latvala at intel.com
Wed May 5 08:19:31 UTC 2021
On Tue, May 04, 2021 at 07:04:15AM +0000, Kunal Joshi wrote:
> We have a thread called chamelium_fsm_mon which monitors HPD events
> triggered by chamelium, Unfortunately not always the HPD event arrives
> in a fixed interval (mostly does), Quick fix to this is to retry.
>
> v2: Remove redundant assert (Bhanu)
>
> Fixes :- https://gitlab.freedesktop.org/drm/intel/-/issues/262
> Cc: Petri Latvala <petri.latvala at intel.com>
> Cc: Modem Bhanuprakash <bhanuprakash.modem at intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi at intel.com>
> ---
> lib/igt_chamelium.c | 28 ++++++++++++++++++++++++----
> 1 file changed, 24 insertions(+), 4 deletions(-)
>
> diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
> index 7085122a7..c385534c6 100644
> --- a/lib/igt_chamelium.c
> +++ b/lib/igt_chamelium.c
> @@ -522,12 +522,32 @@ static xmlrpc_value *chamelium_rpc(struct chamelium *chamelium,
> {
> xmlrpc_value *res;
> va_list va_args;
> + int fsm_trials_left = 5;
>
> - va_start(va_args, format_str);
> - res = __chamelium_rpc_va(chamelium, fsm_port, method_name,
> - format_str, va_args);
> - va_end(va_args);
> + if (strcmp(method_name, "CaptureVideo") == 0) {
> +
> + while (fsm_trials_left) {
> +
Remove this extra empty line.
> + va_start(va_args, format_str);
> + res = __chamelium_rpc_va(chamelium, fsm_port,
> + method_name, format_str,
> + va_args);
> + va_end(va_args);
>
> + if (!chamelium->env.fault_occurred)
> + break;
Ok, I was wondering if you need to clear chamelium->env here but
__chamelium_rpc_va does that. Ok.
> +
> + igt_debug("DP FSM failed retrying, tries left %d\n", fsm_trials_left);
> + --fsm_trials_left;
> + }
> + } else {
> +
Another extra empty line.
With the extra empty lines removed this is
Reviewed-by: Petri Latvala <petri.latvala at intel.com>
Is CaptureVideo really the only method that needs this retrying?
More information about the igt-dev
mailing list