233933
From b2040d8404e0ac44742cb903e3c8da2c832b2925 Mon Sep 17 00:00:00 2001
233933
From: Mohammed Rafi KC <rkavunga@redhat.com>
233933
Date: Thu, 11 Jul 2019 12:45:11 +0530
233933
Subject: [PATCH 235/255] Revert "glusterd/svc: Stop stale process using the
233933
 glusterd_proc_stop"
233933
233933
This reverts commit fe9159ee42f0f67b01e6a495df8105ea0f66738d.
233933
233933
BUG: 1471742
233933
Change-Id: Id5ac0d21319724141ad9bcb9b66435803ebe5f47
233933
Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com>
233933
Reviewed-on: https://code.engineering.redhat.com/gerrit/175944
233933
Tested-by: RHGS Build Bot <nigelb@redhat.com>
233933
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
233933
---
233933
 xlators/mgmt/glusterd/src/glusterd-svc-helper.c | 6 +++---
233933
 1 file changed, 3 insertions(+), 3 deletions(-)
233933
233933
diff --git a/xlators/mgmt/glusterd/src/glusterd-svc-helper.c b/xlators/mgmt/glusterd/src/glusterd-svc-helper.c
233933
index a6e662f..6a3ca52 100644
233933
--- a/xlators/mgmt/glusterd/src/glusterd-svc-helper.c
233933
+++ b/xlators/mgmt/glusterd/src/glusterd-svc-helper.c
233933
@@ -488,9 +488,9 @@ glusterd_shd_svc_mux_init(glusterd_volinfo_t *volinfo, glusterd_svc_t *svc)
233933
 
233933
             if (!mux_proc) {
233933
                 if (pid != -1 && sys_access(svc->proc.pidfile, R_OK) == 0) {
233933
-                    /* stale pid file, stop and unlink it */
233933
-                    glusterd_proc_stop(&svc->proc, SIGTERM, PROC_STOP_FORCE);
233933
-                    glusterd_unlink_file(svc->proc.pidfile);
233933
+                    /* stale pid file, unlink it. */
233933
+                    kill(pid, SIGTERM);
233933
+                    sys_unlink(svc->proc.pidfile);
233933
                 }
233933
                 mux_proc = __gf_find_compatible_svc(GD_NODE_SHD);
233933
             }
233933
-- 
233933
1.8.3.1
233933