2 raid0.c : Multiple Devices driver for Linux
3 Copyright (C) 1994-96 Marc ZYNGIER
4 <zyngier@ufr-info-p7.ibp.fr> or
6 Copyright (C) 1999, 2000 Ingo Molnar, Red Hat
9 RAID-0 management functions.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 You should have received a copy of the GNU General Public License
17 (for example /usr/src/linux/COPYING); if not, write to the Free
18 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/blkdev.h>
22 #include <linux/seq_file.h>
26 static void raid0_unplug(struct request_queue
*q
)
28 mddev_t
*mddev
= q
->queuedata
;
29 raid0_conf_t
*conf
= mddev
->private;
30 mdk_rdev_t
**devlist
= conf
->devlist
;
33 for (i
=0; i
<mddev
->raid_disks
; i
++) {
34 struct request_queue
*r_queue
= bdev_get_queue(devlist
[i
]->bdev
);
40 static int raid0_congested(void *data
, int bits
)
42 mddev_t
*mddev
= data
;
43 raid0_conf_t
*conf
= mddev
->private;
44 mdk_rdev_t
**devlist
= conf
->devlist
;
47 if (mddev_congested(mddev
, bits
))
50 for (i
= 0; i
< mddev
->raid_disks
&& !ret
; i
++) {
51 struct request_queue
*q
= bdev_get_queue(devlist
[i
]->bdev
);
53 ret
|= bdi_congested(&q
->backing_dev_info
, bits
);
59 * inform the user of the raid configuration
61 static void dump_zones(mddev_t
*mddev
)
64 sector_t zone_size
= 0;
65 sector_t zone_start
= 0;
66 char b
[BDEVNAME_SIZE
];
67 raid0_conf_t
*conf
= mddev
->private;
68 printk(KERN_INFO
"******* %s configuration *********\n",
71 for (j
= 0; j
< conf
->nr_strip_zones
; j
++) {
72 printk(KERN_INFO
"zone%d=[", j
);
73 for (k
= 0; k
< conf
->strip_zone
[j
].nb_dev
; k
++)
75 bdevname(conf
->devlist
[j
*mddev
->raid_disks
79 zone_size
= conf
->strip_zone
[j
].zone_end
- zone_start
;
80 printk(KERN_INFO
" zone offset=%llukb "
81 "device offset=%llukb size=%llukb\n",
82 (unsigned long long)zone_start
>>1,
83 (unsigned long long)conf
->strip_zone
[j
].dev_start
>>1,
84 (unsigned long long)zone_size
>>1);
85 zone_start
= conf
->strip_zone
[j
].zone_end
;
87 printk(KERN_INFO
"**********************************\n\n");
90 static int create_strip_zones(mddev_t
*mddev
)
93 sector_t curr_zone_end
, sectors
;
94 mdk_rdev_t
*smallest
, *rdev1
, *rdev2
, *rdev
, **dev
;
95 struct strip_zone
*zone
;
97 char b
[BDEVNAME_SIZE
];
98 raid0_conf_t
*conf
= kzalloc(sizeof(*conf
), GFP_KERNEL
);
102 list_for_each_entry(rdev1
, &mddev
->disks
, same_set
) {
103 printk(KERN_INFO
"raid0: looking at %s\n",
104 bdevname(rdev1
->bdev
,b
));
107 /* round size to chunk_size */
108 sectors
= rdev1
->sectors
;
109 sector_div(sectors
, mddev
->chunk_sectors
);
110 rdev1
->sectors
= sectors
* mddev
->chunk_sectors
;
112 list_for_each_entry(rdev2
, &mddev
->disks
, same_set
) {
113 printk(KERN_INFO
"raid0: comparing %s(%llu)",
114 bdevname(rdev1
->bdev
,b
),
115 (unsigned long long)rdev1
->sectors
);
116 printk(KERN_INFO
" with %s(%llu)\n",
117 bdevname(rdev2
->bdev
,b
),
118 (unsigned long long)rdev2
->sectors
);
119 if (rdev2
== rdev1
) {
120 printk(KERN_INFO
"raid0: END\n");
123 if (rdev2
->sectors
== rdev1
->sectors
) {
125 * Not unique, don't count it as a new
128 printk(KERN_INFO
"raid0: EQUAL\n");
132 printk(KERN_INFO
"raid0: NOT EQUAL\n");
135 printk(KERN_INFO
"raid0: ==> UNIQUE\n");
136 conf
->nr_strip_zones
++;
137 printk(KERN_INFO
"raid0: %d zones\n",
138 conf
->nr_strip_zones
);
141 printk(KERN_INFO
"raid0: FINAL %d zones\n", conf
->nr_strip_zones
);
143 conf
->strip_zone
= kzalloc(sizeof(struct strip_zone
)*
144 conf
->nr_strip_zones
, GFP_KERNEL
);
145 if (!conf
->strip_zone
)
147 conf
->devlist
= kzalloc(sizeof(mdk_rdev_t
*)*
148 conf
->nr_strip_zones
*mddev
->raid_disks
,
153 /* The first zone must contain all devices, so here we check that
154 * there is a proper alignment of slots to devices and find them all
156 zone
= &conf
->strip_zone
[0];
161 list_for_each_entry(rdev1
, &mddev
->disks
, same_set
) {
162 int j
= rdev1
->raid_disk
;
164 if (j
< 0 || j
>= mddev
->raid_disks
) {
165 printk(KERN_ERR
"raid0: bad disk number %d - "
170 printk(KERN_ERR
"raid0: multiple devices for %d - "
176 disk_stack_limits(mddev
->gendisk
, rdev1
->bdev
,
177 rdev1
->data_offset
<< 9);
178 /* as we don't honour merge_bvec_fn, we must never risk
179 * violating it, so limit ->max_segments to 1, lying within
183 if (rdev1
->bdev
->bd_disk
->queue
->merge_bvec_fn
) {
184 blk_queue_max_segments(mddev
->queue
, 1);
185 blk_queue_segment_boundary(mddev
->queue
,
186 PAGE_CACHE_SIZE
- 1);
188 if (!smallest
|| (rdev1
->sectors
< smallest
->sectors
))
192 if (cnt
!= mddev
->raid_disks
) {
193 printk(KERN_ERR
"raid0: too few disks (%d of %d) - "
194 "aborting!\n", cnt
, mddev
->raid_disks
);
198 zone
->zone_end
= smallest
->sectors
* cnt
;
200 curr_zone_end
= zone
->zone_end
;
202 /* now do the other zones */
203 for (i
= 1; i
< conf
->nr_strip_zones
; i
++)
207 zone
= conf
->strip_zone
+ i
;
208 dev
= conf
->devlist
+ i
* mddev
->raid_disks
;
210 printk(KERN_INFO
"raid0: zone %d\n", i
);
211 zone
->dev_start
= smallest
->sectors
;
215 for (j
=0; j
<cnt
; j
++) {
216 rdev
= conf
->devlist
[j
];
217 printk(KERN_INFO
"raid0: checking %s ...",
218 bdevname(rdev
->bdev
, b
));
219 if (rdev
->sectors
<= zone
->dev_start
) {
220 printk(KERN_INFO
" nope.\n");
223 printk(KERN_INFO
" contained as device %d\n", c
);
226 if (!smallest
|| rdev
->sectors
< smallest
->sectors
) {
228 printk(KERN_INFO
" (%llu) is smallest!.\n",
229 (unsigned long long)rdev
->sectors
);
234 sectors
= (smallest
->sectors
- zone
->dev_start
) * c
;
235 printk(KERN_INFO
"raid0: zone->nb_dev: %d, sectors: %llu\n",
236 zone
->nb_dev
, (unsigned long long)sectors
);
238 curr_zone_end
+= sectors
;
239 zone
->zone_end
= curr_zone_end
;
241 printk(KERN_INFO
"raid0: current zone start: %llu\n",
242 (unsigned long long)smallest
->sectors
);
244 mddev
->queue
->unplug_fn
= raid0_unplug
;
245 mddev
->queue
->backing_dev_info
.congested_fn
= raid0_congested
;
246 mddev
->queue
->backing_dev_info
.congested_data
= mddev
;
249 * now since we have the hard sector sizes, we can make sure
250 * chunk size is a multiple of that sector size
252 if ((mddev
->chunk_sectors
<< 9) % queue_logical_block_size(mddev
->queue
)) {
253 printk(KERN_ERR
"%s chunk_size of %d not valid\n",
255 mddev
->chunk_sectors
<< 9);
259 blk_queue_io_min(mddev
->queue
, mddev
->chunk_sectors
<< 9);
260 blk_queue_io_opt(mddev
->queue
,
261 (mddev
->chunk_sectors
<< 9) * mddev
->raid_disks
);
263 printk(KERN_INFO
"raid0: done.\n");
264 mddev
->private = conf
;
267 kfree(conf
->strip_zone
);
268 kfree(conf
->devlist
);
270 mddev
->private = NULL
;
275 * raid0_mergeable_bvec -- tell bio layer if a two requests can be merged
277 * @bvm: properties of new bio
278 * @biovec: the request that could be merged to it.
280 * Return amount of bytes we can accept at this offset
282 static int raid0_mergeable_bvec(struct request_queue
*q
,
283 struct bvec_merge_data
*bvm
,
284 struct bio_vec
*biovec
)
286 mddev_t
*mddev
= q
->queuedata
;
287 sector_t sector
= bvm
->bi_sector
+ get_start_sect(bvm
->bi_bdev
);
289 unsigned int chunk_sectors
= mddev
->chunk_sectors
;
290 unsigned int bio_sectors
= bvm
->bi_size
>> 9;
292 if (is_power_of_2(chunk_sectors
))
293 max
= (chunk_sectors
- ((sector
& (chunk_sectors
-1))
294 + bio_sectors
)) << 9;
296 max
= (chunk_sectors
- (sector_div(sector
, chunk_sectors
)
297 + bio_sectors
)) << 9;
298 if (max
< 0) max
= 0; /* bio_add cannot handle a negative return */
299 if (max
<= biovec
->bv_len
&& bio_sectors
== 0)
300 return biovec
->bv_len
;
305 static sector_t
raid0_size(mddev_t
*mddev
, sector_t sectors
, int raid_disks
)
307 sector_t array_sectors
= 0;
310 WARN_ONCE(sectors
|| raid_disks
,
311 "%s does not support generic reshape\n", __func__
);
313 list_for_each_entry(rdev
, &mddev
->disks
, same_set
)
314 array_sectors
+= rdev
->sectors
;
316 return array_sectors
;
319 static int raid0_run(mddev_t
*mddev
)
323 if (mddev
->chunk_sectors
== 0) {
324 printk(KERN_ERR
"md/raid0: chunk size must be set.\n");
327 if (md_check_no_bitmap(mddev
))
329 blk_queue_max_hw_sectors(mddev
->queue
, mddev
->chunk_sectors
);
330 mddev
->queue
->queue_lock
= &mddev
->queue
->__queue_lock
;
332 ret
= create_strip_zones(mddev
);
336 /* calculate array device size */
337 md_set_array_sectors(mddev
, raid0_size(mddev
, 0, 0));
339 printk(KERN_INFO
"raid0 : md_size is %llu sectors.\n",
340 (unsigned long long)mddev
->array_sectors
);
341 /* calculate the max read-ahead size.
342 * For read-ahead of large files to be effective, we need to
343 * readahead at least twice a whole stripe. i.e. number of devices
344 * multiplied by chunk size times 2.
345 * If an individual device has an ra_pages greater than the
346 * chunk size, then we will not drive that device as hard as it
347 * wants. We consider this a configuration error: a larger
348 * chunksize should be used in that case.
351 int stripe
= mddev
->raid_disks
*
352 (mddev
->chunk_sectors
<< 9) / PAGE_SIZE
;
353 if (mddev
->queue
->backing_dev_info
.ra_pages
< 2* stripe
)
354 mddev
->queue
->backing_dev_info
.ra_pages
= 2* stripe
;
357 blk_queue_merge_bvec(mddev
->queue
, raid0_mergeable_bvec
);
359 md_integrity_register(mddev
);
363 static int raid0_stop(mddev_t
*mddev
)
365 raid0_conf_t
*conf
= mddev
->private;
367 blk_sync_queue(mddev
->queue
); /* the unplug fn references 'conf'*/
368 kfree(conf
->strip_zone
);
369 kfree(conf
->devlist
);
371 mddev
->private = NULL
;
375 /* Find the zone which holds a particular offset
376 * Update *sectorp to be an offset in that zone
378 static struct strip_zone
*find_zone(struct raid0_private_data
*conf
,
382 struct strip_zone
*z
= conf
->strip_zone
;
383 sector_t sector
= *sectorp
;
385 for (i
= 0; i
< conf
->nr_strip_zones
; i
++)
386 if (sector
< z
[i
].zone_end
) {
388 *sectorp
= sector
- z
[i
-1].zone_end
;
395 * remaps the bio to the target device. we separate two flows.
396 * power 2 flow and a general flow for the sake of perfromance
398 static mdk_rdev_t
*map_sector(mddev_t
*mddev
, struct strip_zone
*zone
,
399 sector_t sector
, sector_t
*sector_offset
)
401 unsigned int sect_in_chunk
;
403 raid0_conf_t
*conf
= mddev
->private;
404 unsigned int chunk_sects
= mddev
->chunk_sectors
;
406 if (is_power_of_2(chunk_sects
)) {
407 int chunksect_bits
= ffz(~chunk_sects
);
408 /* find the sector offset inside the chunk */
409 sect_in_chunk
= sector
& (chunk_sects
- 1);
410 sector
>>= chunksect_bits
;
412 chunk
= *sector_offset
;
413 /* quotient is the chunk in real device*/
414 sector_div(chunk
, zone
->nb_dev
<< chunksect_bits
);
416 sect_in_chunk
= sector_div(sector
, chunk_sects
);
417 chunk
= *sector_offset
;
418 sector_div(chunk
, chunk_sects
* zone
->nb_dev
);
421 * position the bio over the real device
422 * real sector = chunk in device + starting of zone
423 * + the position in the chunk
425 *sector_offset
= (chunk
* chunk_sects
) + sect_in_chunk
;
426 return conf
->devlist
[(zone
- conf
->strip_zone
)*mddev
->raid_disks
427 + sector_div(sector
, zone
->nb_dev
)];
431 * Is io distribute over 1 or more chunks ?
433 static inline int is_io_in_chunk_boundary(mddev_t
*mddev
,
434 unsigned int chunk_sects
, struct bio
*bio
)
436 if (likely(is_power_of_2(chunk_sects
))) {
437 return chunk_sects
>= ((bio
->bi_sector
& (chunk_sects
-1))
438 + (bio
->bi_size
>> 9));
440 sector_t sector
= bio
->bi_sector
;
441 return chunk_sects
>= (sector_div(sector
, chunk_sects
)
442 + (bio
->bi_size
>> 9));
446 static int raid0_make_request(struct request_queue
*q
, struct bio
*bio
)
448 mddev_t
*mddev
= q
->queuedata
;
449 unsigned int chunk_sects
;
450 sector_t sector_offset
;
451 struct strip_zone
*zone
;
453 const int rw
= bio_data_dir(bio
);
456 if (unlikely(bio_rw_flagged(bio
, BIO_RW_BARRIER
))) {
457 md_barrier_request(mddev
, bio
);
461 cpu
= part_stat_lock();
462 part_stat_inc(cpu
, &mddev
->gendisk
->part0
, ios
[rw
]);
463 part_stat_add(cpu
, &mddev
->gendisk
->part0
, sectors
[rw
],
467 chunk_sects
= mddev
->chunk_sectors
;
468 if (unlikely(!is_io_in_chunk_boundary(mddev
, chunk_sects
, bio
))) {
469 sector_t sector
= bio
->bi_sector
;
471 /* Sanity check -- queue functions should prevent this happening */
472 if (bio
->bi_vcnt
!= 1 ||
475 /* This is a one page bio that upper layers
476 * refuse to split for us, so we need to split it.
478 if (likely(is_power_of_2(chunk_sects
)))
479 bp
= bio_split(bio
, chunk_sects
- (sector
&
482 bp
= bio_split(bio
, chunk_sects
-
483 sector_div(sector
, chunk_sects
));
484 if (raid0_make_request(q
, &bp
->bio1
))
485 generic_make_request(&bp
->bio1
);
486 if (raid0_make_request(q
, &bp
->bio2
))
487 generic_make_request(&bp
->bio2
);
489 bio_pair_release(bp
);
493 sector_offset
= bio
->bi_sector
;
494 zone
= find_zone(mddev
->private, §or_offset
);
495 tmp_dev
= map_sector(mddev
, zone
, bio
->bi_sector
,
497 bio
->bi_bdev
= tmp_dev
->bdev
;
498 bio
->bi_sector
= sector_offset
+ zone
->dev_start
+
499 tmp_dev
->data_offset
;
501 * Let the main block layer submit the IO and resolve recursion:
506 printk("raid0_make_request bug: can't convert block across chunks"
507 " or bigger than %dk %llu %d\n", chunk_sects
/ 2,
508 (unsigned long long)bio
->bi_sector
, bio
->bi_size
>> 10);
514 static void raid0_status(struct seq_file
*seq
, mddev_t
*mddev
)
519 char b
[BDEVNAME_SIZE
];
520 raid0_conf_t
*conf
= mddev
->private;
523 sector_t zone_start
= 0;
526 for (j
= 0; j
< conf
->nr_strip_zones
; j
++) {
527 seq_printf(seq
, " z%d", j
);
528 seq_printf(seq
, "=[");
529 for (k
= 0; k
< conf
->strip_zone
[j
].nb_dev
; k
++)
530 seq_printf(seq
, "%s/", bdevname(
531 conf
->devlist
[j
*mddev
->raid_disks
+ k
]
534 zone_size
= conf
->strip_zone
[j
].zone_end
- zone_start
;
535 seq_printf(seq
, "] ze=%lld ds=%lld s=%lld\n",
536 (unsigned long long)zone_start
>>1,
537 (unsigned long long)conf
->strip_zone
[j
].dev_start
>>1,
538 (unsigned long long)zone_size
>>1);
539 zone_start
= conf
->strip_zone
[j
].zone_end
;
542 seq_printf(seq
, " %dk chunks", mddev
->chunk_sectors
/ 2);
546 static struct mdk_personality raid0_personality
=
550 .owner
= THIS_MODULE
,
551 .make_request
= raid0_make_request
,
554 .status
= raid0_status
,
558 static int __init
raid0_init (void)
560 return register_md_personality (&raid0_personality
);
563 static void raid0_exit (void)
565 unregister_md_personality (&raid0_personality
);
568 module_init(raid0_init
);
569 module_exit(raid0_exit
);
570 MODULE_LICENSE("GPL");
571 MODULE_DESCRIPTION("RAID0 (striping) personality for MD");
572 MODULE_ALIAS("md-personality-2"); /* RAID0 */
573 MODULE_ALIAS("md-raid0");
574 MODULE_ALIAS("md-level-0");