Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 676e42d8 authored by NeilBrown's avatar NeilBrown
Browse files

md: be more careful setting MD_CHANGE_CLEAN



When MD_CHANGE_CLEAN is set we might block in md_write_start.
So we should only set it when fairly sure that something will clear
it.

There are two places where it is set so as to encourage a metadata
update to record the progress of resync/recovery.  This should only
be done if the internal metadata update mechanisms are in use, which
can be tested by by inspecting '->persistent'.

Signed-off-by: default avatarNeilBrown <neilb@suse.de>
parent f4be6b43
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1526,6 +1526,7 @@ void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
		   atomic_read(&bitmap->mddev->recovery_active) == 0);

	bitmap->mddev->curr_resync_completed = bitmap->mddev->curr_resync;
	if (bitmap->mddev->persistent)
		set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
	sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
	s = 0;
+2 −1
Original line number Diff line number Diff line
@@ -6753,6 +6753,7 @@ void md_do_sync(mddev_t *mddev)
				   atomic_read(&mddev->recovery_active) == 0);
			mddev->curr_resync_completed =
				mddev->curr_resync;
			if (mddev->persistent)
				set_bit(MD_CHANGE_CLEAN, &mddev->flags);
			sysfs_notify(&mddev->kobj, NULL, "sync_completed");
		}