All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kunal Joshi <kunal1.joshi@intel.com>
To: Imre Deak <imre.deak@intel.com>,
	igt-dev@lists.freedesktop.org, lyude@redhat.com
Subject: Re: [igt-dev] [PATCH i-g-t 1/3] lib/igt_chamelium: Sanitize the init error and deinit path
Date: Tue, 7 Jul 2020 13:49:49 +0530	[thread overview]
Message-ID: <20200707081949.GA15847@intel.com> (raw)
In-Reply-To: <20200707131814.17540-1-imre.deak@intel.com>

Hi,

On 2020-07-07 at 16:18:12 +0300, Imre Deak wrote:
> Always return NULL from init in case of an error, and reuse
> chamelium_deinit_rpc_only() for symmetry with init, instead of
> open-coding the same.
> 
> Cc: Lyude Paul <lyude@redhat.com>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
For the whole series
> ---
>  lib/igt_chamelium.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
> index 58e01ab72..5924e5615 100644
> --- a/lib/igt_chamelium.c
> +++ b/lib/igt_chamelium.c
> @@ -2512,7 +2512,8 @@ struct chamelium *chamelium_init(int drm_fd)
>  	return chamelium;
>  error:
>  	chamelium_deinit_rpc_only(chamelium);
> -	return chamelium;
> +
> +	return NULL;
>  }
>  
>  /**
> @@ -2550,12 +2551,11 @@ void chamelium_deinit(struct chamelium *chamelium)
>  	}
>  
>  	xmlrpc_client_destroy(chamelium->client);
> -	xmlrpc_env_clean(&chamelium->env);
>  
>  	for (i = 0; i < chamelium->port_count; i++)
>  		free(chamelium->ports[i].name);
>  
> -	free(chamelium);
> +	chamelium_deinit_rpc_only(chamelium);
>  }
>  
>  bool chamelium_plug_all(struct chamelium *chamelium)
> -- 
> 2.23.1
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2020-07-07 15:17 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-07 13:18 [igt-dev] [PATCH i-g-t 1/3] lib/igt_chamelium: Sanitize the init error and deinit path Imre Deak
2020-07-07  8:19 ` Kunal Joshi [this message]
2020-07-07 13:18 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_chamelium: Duplicate the caller's drm_fd Imre Deak
2020-07-07 13:18 ` [igt-dev] [PATCH i-g-t 3/3] lib/igt_chamelium: Wait for connectors after replugging them at exit Imre Deak
2020-07-07 13:41 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_chamelium: Sanitize the init error and deinit path Patchwork
2020-07-08 10:08   ` Imre Deak
2020-07-08 11:53     ` Vudum, Lakshminarayana
2020-07-07 16:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-07-08 10:54 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200707081949.GA15847@intel.com \
    --to=kunal1.joshi@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=imre.deak@intel.com \
    --cc=lyude@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.