diff options
author | Xiao Ni <xni@redhat.com> | 2020-09-15 09:44:42 +0200 |
---|---|---|
committer | Jes Sorensen <jsorensen@fb.com> | 2020-10-14 17:24:39 +0200 |
commit | 2ce091724031e18f522994ffd1e5eb0dc404bcba (patch) | |
tree | c85645b11bf2a1f0eee0bc474a3ef948872850b9 /Create.c | |
parent | Detail: show correct raid level when the array is inactive (diff) | |
download | mdadm-2ce091724031e18f522994ffd1e5eb0dc404bcba.tar.xz mdadm-2ce091724031e18f522994ffd1e5eb0dc404bcba.zip |
Don't create bitmap for raid5 with journal disk
Journal disk and bitmap can't exist at the same time. It needs to check if the raid
has a journal disk when creating bitmap.
Signed-off-by: Xiao Ni <xni@redhat.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
Diffstat (limited to '')
-rw-r--r-- | Create.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -542,6 +542,7 @@ int Create(struct supertype *st, char *mddev, if (!s->bitmap_file && s->level >= 1 && st->ss->add_internal_bitmap && + s->journaldisks == 0 && (s->consistency_policy != CONSISTENCY_POLICY_RESYNC && s->consistency_policy != CONSISTENCY_POLICY_PPL) && (s->write_behind || s->size > 100*1024*1024ULL)) { |