]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] md: remove arbitrary limit on chunk size
authorNeilBrown <neilb@suse.de>
Mon, 26 Jun 2006 07:27:36 +0000 (00:27 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 26 Jun 2006 16:58:36 +0000 (09:58 -0700)
The largest chunk size the code can support without substantial surgery is
2^30 bytes, so make that the limit instead of an arbitrary 4Meg.  Some day,
the 'chunksize' should change to a sector-shift instead of a byte-count.  Then
no limit would be needed.

Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/md/raid10.c
drivers/md/raid5.c
drivers/md/raid6main.c
include/linux/raid/md_k.h

index 1440935414e63825adfb5278d2aad8d0be6e1822..affeaefd4033f0fb0dec900d0c0d36b1f6402de6 100644 (file)
@@ -2050,7 +2050,7 @@ static int run(mddev_t *mddev)
         * maybe...
         */
        {
-               int stripe = conf->raid_disks * mddev->chunk_size / PAGE_SIZE;
+               int stripe = conf->raid_disks * (mddev->chunk_size / PAGE_SIZE);
                stripe /= conf->near_copies;
                if (mddev->queue->backing_dev_info.ra_pages < 2* stripe)
                        mddev->queue->backing_dev_info.ra_pages = 2* stripe;
index 31843604049cdb7d6f916fee3861c1994869cf6d..122e64e557b1c13b14211b385fcb4f7c49143848 100644 (file)
@@ -2382,8 +2382,8 @@ static int run(mddev_t *mddev)
         * 2 * (n-1) * chunksize where 'n' is the number of raid devices
         */
        {
-               int stripe = (mddev->raid_disks-1) * mddev->chunk_size
-                       / PAGE_SIZE;
+               int stripe = (mddev->raid_disks-1) *
+                       (mddev->chunk_size / PAGE_SIZE);
                if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
                        mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
        }
index bc69355e0100ece2f803bd17bc6b6c44cf2bd074..e53d2d96ea3a8bf18ed83544a8d4be370f320064 100644 (file)
@@ -2135,8 +2135,8 @@ static int run(mddev_t *mddev)
         * 2 * (n-2) * chunksize where 'n' is the number of raid devices
         */
        {
-               int stripe = (mddev->raid_disks-2) * mddev->chunk_size
-                       / PAGE_SIZE;
+               int stripe = (mddev->raid_disks-2) *
+                       (mddev->chunk_size / PAGE_SIZE);
                if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
                        mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
        }
index e2df61f5b09a464ae66d11a95dae453da4e258fc..db2ca2d9066e000670a5db52a4071e1578611298 100644 (file)
@@ -40,7 +40,8 @@ typedef struct mdk_rdev_s mdk_rdev_t;
  * options passed in raidrun:
  */
 
-#define MAX_CHUNK_SIZE (4096*1024)
+/* Currently this must fix in an 'int' */
+#define MAX_CHUNK_SIZE (1<<30)
 
 /*
  * MD's 'extended' device