diff options
| -rw-r--r-- | glusterfsd/src/glusterfsd.c | 12 | ||||
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 5 | 
2 files changed, 10 insertions, 7 deletions
diff --git a/glusterfsd/src/glusterfsd.c b/glusterfsd/src/glusterfsd.c index bbd9515df..057f8909b 100644 --- a/glusterfsd/src/glusterfsd.c +++ b/glusterfsd/src/glusterfsd.c @@ -1162,7 +1162,7 @@ glusterfs_pidfile_setup (glusterfs_ctx_t *ctx)  int  glusterfs_pidfile_cleanup (glusterfs_ctx_t *ctx)  { -        cmd_args_t  *cmd_args = NULL; +        cmd_args_t      *cmd_args = NULL;          cmd_args = &ctx->cmd_args; @@ -1170,18 +1170,18 @@ glusterfs_pidfile_cleanup (glusterfs_ctx_t *ctx)                  return 0;          gf_log ("glusterfsd", GF_LOG_TRACE, -                "pidfile %s unlocking", +                "pidfile %s cleanup",                  cmd_args->pid_file); -        lockf (fileno (ctx->pidfp), F_ULOCK, 0); -        fclose (ctx->pidfp); -        ctx->pidfp = NULL; -          if (ctx->cmd_args.pid_file) {                  unlink (ctx->cmd_args.pid_file);                  ctx->cmd_args.pid_file = NULL;          } +        lockf (fileno (ctx->pidfp), F_ULOCK, 0); +        fclose (ctx->pidfp); +        ctx->pidfp = NULL; +          return 0;  } diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index 1884c2169..a84f72bf2 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -885,6 +885,9 @@ glusterd_service_stop (const char *service, char *pidfile, int sig,                  if (ret && (ENOENT != errno)) {                          gf_log ("", GF_LOG_ERROR, "Unable to "                                  "unlink stale pidfile: %s", pidfile); +                } else if (ret && (ENOENT == errno)){ +                        ret = 0; +                        gf_log ("", GF_LOG_INFO, "Brick already stopped");                  }                  goto out;          } @@ -1222,7 +1225,7 @@ glusterd_volume_stop_glusterfs (glusterd_volinfo_t  *volinfo,          ret = glusterd_service_stop ("brick", pidfile, SIGTERM, _gf_false);          if (ret == 0) {                  glusterd_set_brick_status (brickinfo, GF_BRICK_STOPPED); -                ret = glusterd_brick_unlink_socket_file (volinfo, brickinfo); +                (void) glusterd_brick_unlink_socket_file (volinfo, brickinfo);          }          return ret;  }  | 
