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

Commit f5353cd7 authored by Jonathan Brassow's avatar Jonathan Brassow Committed by Linus Torvalds
Browse files

dm raid1: fix to commit pending clear region requests



With the code as it is, it is possible for oustanding clear region requests
never to get flushed when a mirror is deactivated or suspended.  This means
there will always be some resync work required when a mirror is activated,
even though it may very well be in-sync.

Always requesting the flush doesn't hurt us.  This is because the log tracks
whether any changes occurred and, if not, no flush is performed.

Signed-off-by: default avatarJonathan Brassow <jbrassow@redhat.com>
Signed-off-by: default avatarAlasdair G Kergon <agk@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 26b9f228
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -405,7 +405,6 @@ static void rh_update_states(struct region_hash *rh)
		mempool_free(reg, rh->region_pool);
	}

	if (!list_empty(&recovered))
	rh->log->type->flush(rh->log);

	list_for_each_entry_safe (reg, next, &clean, list)