]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
mdmon: discard test_pidfile()
authorNeilBrown <neilb@suse.de>
Thu, 4 Feb 2010 03:49:32 +0000 (14:49 +1100)
committerNeilBrown <neilb@suse.de>
Thu, 4 Feb 2010 05:37:21 +0000 (16:37 +1100)
devname2mdmon() can be used just as easily and doing so saves us from
some duplicate code.
Also tidy up some related logic.

Signed-off-by: NeilBrown <neilb@suse.de>
mdmon.c

diff --git a/mdmon.c b/mdmon.c
index c5fcc4bc142efcebf753371e9014158d25c31f02..1cdbde1d29cd9d050098c60f09d38cdd644f2751 100644 (file)
--- a/mdmon.c
+++ b/mdmon.c
@@ -113,15 +113,6 @@ static struct superswitch *find_metadata_methods(char *vers)
        return NULL;
 }
 
-static int test_pidfile(char *devname)
-{
-       char path[100];
-       struct stat st;
-
-       sprintf(path, "/var/run/mdadm/%s.pid", devname);
-       return stat(path, &st);
-}
-
 int make_pidfile(char *devname, int o_excl)
 {
        char path[100];
@@ -529,13 +520,14 @@ static int mdmon(char *devname, int devnum, int must_fork, char *switchroot)
        }
 
        ignore = chdir("/");
-       if (victim < 0 && test_pidfile(container->devname) == 0) {
+       if (victim < 0) {
                if (ping_monitor(container->devname) == 0) {
                        fprintf(stderr, "mdmon: %s already managed\n",
                                container->devname);
                        exit(3);
-               } else if (victim < 0)
-                       victim = devname2mdmon(container->devname);
+               }
+               /* if there is a pid file, kill whoever is there just in case */
+               victim = devname2mdmon(container->devname);
        }
        if (container->ss->load_super(container, mdfd, devname)) {
                fprintf(stderr, "mdmon: Cannot load metadata for %s\n",