On Wed, 29 Jul 2015 17:38:47 -0700 Shaohua Li <shli@xxxxxx> wrote: > If cache(log) support is enabled, don't allow resize/reshape in current > stage. In the future, we can flush all data from cache(log) to raid > before resize/reshape and then allow resize/reshape. Just to be on the safe side, you could probably add code to refuse to start an array that is in the middle of a reshape and also have a log configured. I think it makes sense to plan ahead a little and make sure we can handle a cache on a reshaping array properly. If the log metadata block includes a before/after flag for each stripe, which recorded whether the stripe was "before" or "after" reshape_position when it was written, then when recovering the log we can check if the given addresses are still on that side. If they are, just recover using the appropriate geometry info from the superblock. If not, then reshape has passed over that stripe and it must now be fully up-to-date on the RAID so the data in the log can be discarded. There may be some details I missed, but I think it is worth thinking through properly. I don't expect the code to handle this straight away, but we need a clear plan to be sure there is sufficient information stored in the log. Thanks, NeilBrown > > Signed-off-by: Shaohua Li <shli@xxxxxx> > --- > drivers/md/raid5.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c > index 59f9312..b694d06 100644 > --- a/drivers/md/raid5.c > +++ b/drivers/md/raid5.c > @@ -7184,6 +7184,10 @@ static int raid5_resize(struct mddev *mddev, sector_t sectors) > * worth it. > */ > sector_t newsize; > + struct r5conf *conf = mddev->private; > + > + if (conf->log) > + return -EINVAL; > sectors &= ~((sector_t)mddev->chunk_sectors - 1); > newsize = raid5_size(mddev, sectors, mddev->raid_disks); > if (mddev->external_size && > @@ -7235,6 +7239,8 @@ static int check_reshape(struct mddev *mddev) > { > struct r5conf *conf = mddev->private; > > + if (conf->log) > + return -EINVAL; > if (mddev->delta_disks == 0 && > mddev->new_layout == mddev->layout && > mddev->new_chunk_sectors == mddev->chunk_sectors) -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html