diff --git a/WHATS_NEW b/WHATS_NEW index 5a258c116..0b2301867 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,6 +1,6 @@ Version 2.02.165 - =================================== - Don't allow lvconvert --repair on raid0 devices. + Don't allow lvconvert --repair on raid0 devices or attempt to monitor them. No longer adjust incorrect number of raid stripes supplied to lvcreate. Move lcm and gcd to lib/misc. Suppress some unnecessary --stripesize parameter warnings. diff --git a/lib/raid/raid.c b/lib/raid/raid.c index ef5794ff7..3bc3c757a 100644 --- a/lib/raid/raid.c +++ b/lib/raid/raid.c @@ -499,7 +499,12 @@ static struct segment_type *_init_raid_segtype(struct cmd_context *cmd, segtype->ops = &_raid_ops; segtype->name = rt->name; - segtype->flags = SEG_RAID | SEG_ONLY_EXCLUSIVE | rt->extra_flags | monitored; + segtype->flags = SEG_RAID | SEG_ONLY_EXCLUSIVE | rt->extra_flags; + + /* Never monitor raid0 or raid0_meta LVs */ + if (!segtype_is_any_raid0(segtype)) + segtype->flags |= monitored; + segtype->parity_devs = rt->parity; log_very_verbose("Initialised segtype: %s", segtype->name);