]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Monitor: print message before quit for no array to monitor
authorColy Li <colyli@suse.de>
Thu, 2 Sep 2021 07:32:20 +0000 (15:32 +0800)
committerJes Sorensen <jsorensen@fb.com>
Wed, 8 Dec 2021 14:44:14 +0000 (09:44 -0500)
If there is no array device to monitor, Monitor() will stop monitoring
at line 261 from the following code block,
 257                 if (!new_found) {
 258                         if (oneshot)
 259                                 break;
 260                         else if (!anyredundant) {
 261                                 break;
 262                         }

This change was introduced by commit 007087d0898a ("Monitor: stop
notifing about containers"). Before this commit, Monitor() will continue
and won't quit even there is no array to monitor.

It is fine to quit without any array device to monitor, but users may
wonder whether there is something wrong with mdadm program or their
configuration to make mdadm quit monitoring.

This patch adds a simple error message to indicate Monitor() quits for
array device to monitor, which makes users have hint to understand why
mdadm stops monitoring.

Reported-by: George Gkioulis <ggkioulis@suse.com>
Suggested-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Signed-off-by: Coly Li <colyli@suse.de>
Cc: Jes Sorensen <jsorensen@fb.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
Monitor.c

index 8bd3b5a19ddf02bf638dc2b3da9bde52f17cfe19..30c031a25fc7d2c2b602dcc88e9773a1aa9487c2 100644 (file)
--- a/Monitor.c
+++ b/Monitor.c
@@ -258,6 +258,7 @@ int Monitor(struct mddev_dev *devlist,
                        if (oneshot)
                                break;
                        else if (!anyredundant) {
+                               pr_err("No array with redundancy detected, stopping\n");
                                break;
                        }
                        else {