]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Monitor: fix for regression with container devices
authorArtur Paszkiewicz <artur.paszkiewicz@intel.com>
Mon, 9 Feb 2015 10:13:50 +0000 (11:13 +0100)
committerNeilBrown <neilb@suse.de>
Wed, 11 Feb 2015 04:27:57 +0000 (15:27 +1100)
This patch fixes 2 problems introduced by commit 9a518d8: not closing a
file descriptor and ignoring container devices. Array state is always
"inactive" for containers, so we make sure that the device is not a
container by reading also the "level" sysfs entry.

Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Reviewed-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Monitor.c

index 971d2ecbea723a8d6afbf77339b6e3ed9f92c803..66d67baf5c987e107df52e7ad4cdd8e874755d29 100644 (file)
--- a/Monitor.c
+++ b/Monitor.c
@@ -483,11 +483,17 @@ static int check_array(struct state *st, struct mdstat_ent *mdstat,
                    strncmp(buf,"inact",5) == 0) {
                        if (fd >= 0)
                                close(fd);
-                       if (!st->err)
-                               alert("DeviceDisappeared", dev, NULL, ainfo);
-                       st->err++;
-                       return 0;
+                       fd = sysfs_open(st->devnm, NULL, "level");
+                       if (fd < 0 || read(fd, buf, 10) != 0) {
+                               if (fd >= 0)
+                                       close(fd);
+                               if (!st->err)
+                                       alert("DeviceDisappeared", dev, NULL, ainfo);
+                               st->err++;
+                               return 0;
+                       }
                }
+               close(fd);
        }
        fd = open(dev, O_RDONLY);
        if (fd < 0) {