On Wed, Oct 24, 2018 at 12:05:51AM +0200, Martin Wilck wrote:
> It can happen that, before the main thread reacts on DAEMON_SHUTDOWN
> and starts cancelling threads, another thread resets the state to
> something else. Fix that.
> 

Reviewed-by: Benjamin Marzinsk <bmarz...@redhat.com>

> Signed-off-by: Martin Wilck <mwi...@suse.com>
> ---
>  multipathd/cli_handlers.c |  9 +++++++--
>  multipathd/main.c         | 10 +++++++---
>  2 files changed, 14 insertions(+), 5 deletions(-)
> 
> diff --git a/multipathd/cli_handlers.c b/multipathd/cli_handlers.c
> index 4aea4ce7..a0d57a53 100644
> --- a/multipathd/cli_handlers.c
> +++ b/multipathd/cli_handlers.c
> @@ -1124,12 +1124,17 @@ cli_switch_group(void * v, char ** reply, int * len, 
> void * data)
>  int
>  cli_reconfigure(void * v, char ** reply, int * len, void * data)
>  {
> +     int rc;
> +
>       condlog(2, "reconfigure (operator)");
>  
> -     if (set_config_state(DAEMON_CONFIGURE) == ETIMEDOUT) {
> +     rc = set_config_state(DAEMON_CONFIGURE); 
> +     if (rc == ETIMEDOUT) {
>               condlog(2, "timeout starting reconfiguration");
>               return 1;
> -     }
> +     } else if (rc == EINVAL)
> +             /* daemon shutting down */
> +             return 1;
>       return 0;
>  }
>  
> diff --git a/multipathd/main.c b/multipathd/main.c
> index c71e7d03..768da8da 100644
> --- a/multipathd/main.c
> +++ b/multipathd/main.c
> @@ -207,7 +207,7 @@ static void config_cleanup(void *arg)
>  
>  static void __post_config_state(enum daemon_status state)
>  {
> -     if (state != running_state) {
> +     if (state != running_state && running_state != DAEMON_SHUTDOWN) {
>               enum daemon_status old_state = running_state;
>  
>               running_state = state;
> @@ -235,7 +235,9 @@ int set_config_state(enum daemon_status state)
>       if (running_state != state) {
>               enum daemon_status old_state = running_state;
>  
> -             if (running_state != DAEMON_IDLE) {
> +             if (running_state == DAEMON_SHUTDOWN)
> +                     rc = EINVAL;
> +             else if (running_state != DAEMON_IDLE) {
>                       struct timespec ts;
>  
>                       clock_gettime(CLOCK_MONOTONIC, &ts);
> @@ -2204,7 +2206,9 @@ checkerloop (void *ap)
>               if (rc == ETIMEDOUT) {
>                       condlog(4, "timeout waiting for DAEMON_IDLE");
>                       continue;
> -             }
> +             } else if (rc == EINVAL)
> +                     /* daemon shutdown */
> +                     break;
>  
>               pthread_cleanup_push(cleanup_lock, &vecs->lock);
>               lock(&vecs->lock);
> -- 
> 2.19.1

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to