[dm-devel] [PATCH 09/35] multipathd: cli_del_map: fix reply for delayed action

Benjamin Marzinski bmarzins at redhat.com
Wed Sep 15 23:40:08 UTC 2021


On Fri, Sep 10, 2021 at 01:40:54PM +0200, mwilck at suse.com wrote:
> From: Martin Wilck <mwilck at suse.com>
> 
> Return code 2 from ev_remove_map means that a delayed remove has
> been started, which is not the same as failure.
> 
Reviewed-by: Benjamin Marzinski <bmarzins at redhat.com>
> Signed-off-by: Martin Wilck <mwilck at suse.com>
> ---
>  multipathd/cli_handlers.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/multipathd/cli_handlers.c b/multipathd/cli_handlers.c
> index 44f76ee..2e4b239 100644
> --- a/multipathd/cli_handlers.c
> +++ b/multipathd/cli_handlers.c
> @@ -783,6 +783,9 @@ cli_del_map (void * v, char ** reply, int * len, void * data)
>  		return 1;
>  	}
>  	rc = ev_remove_map(param, alias, minor, vecs);
> +	if (rc == 2)
> +		*reply = strdup("delayed");
> +
>  	FREE(alias);
>  	return rc;
>  }
> -- 
> 2.33.0




More information about the dm-devel mailing list