]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
md: Fix md grow/size code to correctly find the maximum available space
authorNeil Brown <neilb@suse.de>
Fri, 15 Dec 2006 00:48:58 +0000 (01:48 +0100)
committerAdrian Bunk <bunk@stusta.de>
Fri, 15 Dec 2006 00:48:58 +0000 (01:48 +0100)
An md array can be asked to change the amount of each device that it is using,
and in particular can be asked to use the maximum available space.  This
currently only works if the first device is not larger than the rest.  As
'size' gets changed and so 'fit' becomes wrong.  So check if a 'fit' is
required early and don't corrupt it.

Signed-off-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
drivers/md/md.c

index 78cca0c4e95953f4a7b9d6d6e627de1ac7a67392..2fd2cd4470a678a657a8ca1e7f578c3e966692e5 100644 (file)
@@ -3437,6 +3437,7 @@ static int update_size(mddev_t *mddev, unsigned long size)
        mdk_rdev_t * rdev;
        int rv;
        struct list_head *tmp;
+       int fit = (size == 0);
 
        if (mddev->pers->resize == NULL)
                return -EINVAL;
@@ -3454,7 +3455,6 @@ static int update_size(mddev_t *mddev, unsigned long size)
                return -EBUSY;
        ITERATE_RDEV(mddev,rdev,tmp) {
                sector_t avail;
-               int fit = (size == 0);
                if (rdev->sb_offset > rdev->data_offset)
                        avail = (rdev->sb_offset*2) - rdev->data_offset;
                else