dm raid: small cleanup and remove unsed "struct raid_set" member
[linux-2.6-microblaze.git] / drivers / md / dm-raid.c
index 3df7c5b..1069e61 100644 (file)
@@ -209,6 +209,8 @@ struct raid_dev {
 #define RT_FLAG_UPDATE_SBS             3
 #define RT_FLAG_RESHAPE_RS             4
 #define RT_FLAG_RS_SUSPENDED           5
+#define RT_FLAG_RS_IN_SYNC             6
+#define RT_FLAG_RS_RESYNCING           7
 
 /* Array elements of 64 bit needed for rebuild/failed disk bits */
 #define DISKS_ARRAY_ELEMS ((MAX_RAID_DEVICES + (sizeof(uint64_t) * 8 - 1)) / sizeof(uint64_t) / 8)
@@ -225,7 +227,6 @@ struct rs_layout {
 struct raid_set {
        struct dm_target *ti;
 
-       uint32_t bitmap_loaded;
        uint32_t stripe_cache_entries;
        unsigned long ctr_flags;
        unsigned long runtime_flags;
@@ -3305,8 +3306,10 @@ static const char *decipher_sync_action(struct mddev *mddev, unsigned long recov
        if (test_bit(MD_RECOVERY_FROZEN, &recovery))
                return "frozen";
 
-       if (test_bit(MD_RECOVERY_RUNNING, &recovery) ||
-           (!mddev->ro && test_bit(MD_RECOVERY_NEEDED, &recovery))) {
+       /* The MD sync thread can be done with io but still be running */
+       if (!test_bit(MD_RECOVERY_DONE, &recovery) &&
+           (test_bit(MD_RECOVERY_RUNNING, &recovery) ||
+            (!mddev->ro && test_bit(MD_RECOVERY_NEEDED, &recovery)))) {
                if (test_bit(MD_RECOVERY_RESHAPE, &recovery))
                        return "reshape";
 
@@ -3335,7 +3338,7 @@ static const char *decipher_sync_action(struct mddev *mddev, unsigned long recov
  *  'A' = Alive and in-sync raid set component _or_ alive raid4/5/6 'write_through' journal device
  *  '-' = Non-existing device (i.e. uspace passed '- -' into the ctr)
  */
-static const char *__raid_dev_status(struct raid_set *rs, struct md_rdev *rdev, bool array_in_sync)
+static const char *__raid_dev_status(struct raid_set *rs, struct md_rdev *rdev)
 {
        if (!rdev->bdev)
                return "-";
@@ -3343,85 +3346,117 @@ static const char *__raid_dev_status(struct raid_set *rs, struct md_rdev *rdev,
                return "D";
        else if (test_bit(Journal, &rdev->flags))
                return (rs->journal_dev.mode == R5C_JOURNAL_MODE_WRITE_THROUGH) ? "A" : "a";
-       else if (!array_in_sync || !test_bit(In_sync, &rdev->flags))
+       else if (test_bit(RT_FLAG_RS_RESYNCING, &rs->runtime_flags) ||
+                (!test_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags) &&
+                 !test_bit(In_sync, &rdev->flags)))
                return "a";
        else
                return "A";
 }
 
-/* Helper to return resync/reshape progress for @rs and @array_in_sync */
+/* Helper to return resync/reshape progress for @rs and runtime flags for raid set in sync / resynching */
 static sector_t rs_get_progress(struct raid_set *rs, unsigned long recovery,
-                               sector_t resync_max_sectors, bool *array_in_sync)
+                               sector_t resync_max_sectors)
 {
-       sector_t r, curr_resync_completed;
+       sector_t r;
        struct mddev *mddev = &rs->md;
 
-       curr_resync_completed = mddev->curr_resync_completed ?: mddev->recovery_cp;
-       *array_in_sync = false;
+       clear_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags);
+       clear_bit(RT_FLAG_RS_RESYNCING, &rs->runtime_flags);
 
        if (rs_is_raid0(rs)) {
                r = resync_max_sectors;
-               *array_in_sync = true;
+               set_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags);
 
        } else {
-               r = mddev->reshape_position;
-
                /* Reshape is relative to the array size */
-               if (test_bit(MD_RECOVERY_RESHAPE, &recovery) ||
-                   r != MaxSector) {
-                       if (r == MaxSector) {
-                               *array_in_sync = true;
-                               r = resync_max_sectors;
-                       } else {
+               if (test_bit(MD_RECOVERY_RESHAPE, &recovery)) {
+                       r = mddev->reshape_position;
+                       if (r != MaxSector) {
                                /* Got to reverse on backward reshape */
                                if (mddev->reshape_backwards)
                                        r = mddev->array_sectors - r;
 
-                               /* Devide by # of data stripes */
-                               sector_div(r, mddev_data_stripes(rs));
+                               /* Divide by # of data stripes unless raid1 */
+                               if (!rs_is_raid1(rs))
+                                       sector_div(r, mddev_data_stripes(rs));
                        }
 
-               /* Sync is relative to the component device size */
-               } else if (test_bit(MD_RECOVERY_RUNNING, &recovery))
-                       r = curr_resync_completed;
+               /*
+                * Sync/recover is relative to the component device size.
+                *
+                * MD_RECOVERY_NEEDED for https://bugzilla.redhat.com/show_bug.cgi?id=1508070
+                */
+               } else if (test_bit(MD_RECOVERY_NEEDED, &recovery) ||
+                          test_bit(MD_RECOVERY_RUNNING, &recovery))
+                       r = mddev->curr_resync_completed;
+
                else
                        r = mddev->recovery_cp;
 
-               if ((r == MaxSector) ||
-                   (test_bit(MD_RECOVERY_DONE, &recovery) &&
-                    (mddev->curr_resync_completed == resync_max_sectors))) {
+               if (r >= resync_max_sectors &&
+                   (!test_bit(MD_RECOVERY_REQUESTED, &recovery) ||
+                    (!test_bit(MD_RECOVERY_FROZEN, &recovery) &&
+                     !test_bit(MD_RECOVERY_NEEDED, &recovery) &&
+                     !test_bit(MD_RECOVERY_RUNNING, &recovery)))) {
                        /*
                         * Sync complete.
                         */
-                       *array_in_sync = true;
-                       r = resync_max_sectors;
+                       /* In case we have finished recovering, the array is in sync. */
+                       if (test_bit(MD_RECOVERY_RECOVER, &recovery))
+                               set_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags);
+
+               } else if (test_bit(MD_RECOVERY_RECOVER, &recovery)) {
+                       /*
+                        * In case we are recovering, the array is not in sync
+                        * and health chars should show the recovering legs.
+                        */
+                       ;
+
+               } else if (test_bit(MD_RECOVERY_SYNC, &recovery) &&
+                          !test_bit(MD_RECOVERY_REQUESTED, &recovery)) {
+                       /*
+                        * If "resync" is occurring, the raid set
+                        * is or may be out of sync hence the health
+                        * characters shall be 'a'.
+                        */
+                       set_bit(RT_FLAG_RS_RESYNCING, &rs->runtime_flags);
+
                } else if (test_bit(MD_RECOVERY_REQUESTED, &recovery)) {
                        /*
                         * If "check" or "repair" is occurring, the raid set has
                         * undergone an initial sync and the health characters
                         * should not be 'a' anymore.
                         */
-                       *array_in_sync = true;
+                       set_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags);
+
                } else {
                        struct md_rdev *rdev;
 
+                       /*
+                        * We are idle and recovery is needed, prevent 'A' chars race
+                        * caused by components still set to in-sync by constrcuctor.
+                        */
+                       if (test_bit(MD_RECOVERY_NEEDED, &recovery))
+                               set_bit(RT_FLAG_RS_RESYNCING, &rs->runtime_flags);
+
                        /*
                         * The raid set may be doing an initial sync, or it may
                         * be rebuilding individual components.  If all the
                         * devices are In_sync, then it is the raid set that is
                         * being initialized.
                         */
+                       set_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags);
                        rdev_for_each(rdev, mddev)
                                if (!test_bit(Journal, &rdev->flags) &&
-                                   !test_bit(In_sync, &rdev->flags))
-                                       *array_in_sync = true;
-#if 0
-                       r = 0; /* HM FIXME: TESTME: https://bugzilla.redhat.com/show_bug.cgi?id=1210637 ? */
-#endif
+                                   !test_bit(In_sync, &rdev->flags)) {
+                                       clear_bit(RT_FLAG_RS_IN_SYNC, &rs->runtime_flags);
+                                       break;
+                               }
                }
        }
 
-       return r;
+       return min(r, resync_max_sectors);
 }
 
 /* Helper to return @dev name or "-" if !@dev */
@@ -3437,7 +3472,6 @@ static void raid_status(struct dm_target *ti, status_type_t type,
        struct mddev *mddev = &rs->md;
        struct r5conf *conf = mddev->private;
        int i, max_nr_stripes = conf ? conf->max_nr_stripes : 0;
-       bool array_in_sync;
        unsigned long recovery;
        unsigned int raid_param_cnt = 1; /* at least 1 for chunksize */
        unsigned int sz = 0;
@@ -3462,14 +3496,14 @@ static void raid_status(struct dm_target *ti, status_type_t type,
                /* Get sensible max sectors even if raid set not yet started */
                resync_max_sectors = test_bit(RT_FLAG_RS_PRERESUMED, &rs->runtime_flags) ?
                                      mddev->resync_max_sectors : mddev->dev_sectors;
-               progress = rs_get_progress(rs, recovery, resync_max_sectors, &array_in_sync);
+               progress = rs_get_progress(rs, recovery, resync_max_sectors);
                resync_mismatches = (mddev->last_sync_action && !strcasecmp(mddev->last_sync_action, "check")) ?
                                    atomic64_read(&mddev->resync_mismatches) : 0;
                sync_action = decipher_sync_action(&rs->md, recovery);
 
                /* HM FIXME: do we want another state char for raid0? It shows 'D'/'A'/'-' now */
                for (i = 0; i < rs->raid_disks; i++)
-                       DMEMIT(__raid_dev_status(rs, &rs->dev[i].rdev, array_in_sync));
+                       DMEMIT(__raid_dev_status(rs, &rs->dev[i].rdev));
 
                /*
                 * In-sync/Reshape ratio:
@@ -3520,7 +3554,7 @@ static void raid_status(struct dm_target *ti, status_type_t type,
                 * v1.10.0+:
                 */
                DMEMIT(" %s", test_bit(__CTR_FLAG_JOURNAL_DEV, &rs->ctr_flags) ?
-                             __raid_dev_status(rs, &rs->journal_dev.rdev, 0) : "-");
+                             __raid_dev_status(rs, &rs->journal_dev.rdev) : "-");
                break;
 
        case STATUSTYPE_TABLE:
@@ -3929,9 +3963,6 @@ static void raid_resume(struct dm_target *ti)
                attempt_restore_of_faulty_devices(rs);
        }
 
-       mddev->ro = 0;
-       mddev->in_sync = 0;
-
        /* Only reduce raid set size before running a disk removing reshape. */
        if (mddev->delta_disks < 0)
                rs_set_capacity(rs);
@@ -3954,6 +3985,8 @@ static void raid_resume(struct dm_target *ti)
 
        if (test_and_clear_bit(RT_FLAG_RS_SUSPENDED, &rs->runtime_flags)) {
                mddev_lock_nointr(mddev);
+               mddev->ro = 0;
+               mddev->in_sync = 0;
                mddev_resume(mddev);
                mddev_unlock(mddev);
        }