blob: 3816e5477db1e743afeaf707c1971f1dbdce1901 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _RAID0_H
3#define _RAID0_H
4
NeilBrowne373ab12011-10-11 16:48:59 +11005struct strip_zone {
Andre Nolldc582662009-06-16 16:18:43 +10006 sector_t zone_end; /* Start of the next zone (in sectors) */
Andre Noll019c4e22009-01-09 08:31:06 +11007 sector_t dev_start; /* Zone offset in real dev (in sectors) */
NeilBrownba13da42012-03-19 12:46:39 +11008 int nb_dev; /* # of devices attached to the zone */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009};
10
NeilBrownc84a1372019-09-09 16:30:02 +100011/* Linux 3.14 (20d0189b101) made an unintended change to
12 * the RAID0 layout for multi-zone arrays (where devices aren't all
13 * the same size.
14 * RAID0_ORIG_LAYOUT restores the original layout
15 * RAID0_ALT_MULTIZONE_LAYOUT uses the altered layout
16 * The layouts are identical when there is only one zone (all
17 * devices the same size).
18 */
19
20enum r0layout {
21 RAID0_ORIG_LAYOUT = 1,
22 RAID0_ALT_MULTIZONE_LAYOUT = 2,
23};
NeilBrowne373ab12011-10-11 16:48:59 +110024struct r0conf {
NeilBrownba13da42012-03-19 12:46:39 +110025 struct strip_zone *strip_zone;
26 struct md_rdev **devlist; /* lists of rdevs, pointed to
27 * by strip_zone->dev */
28 int nr_strip_zones;
NeilBrownc84a1372019-09-09 16:30:02 +100029 enum r0layout layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#endif