md: raid0: Remove hash spacing and sector shift.
[firefly-linux-kernel-4.4.55.git] / drivers / md / raid0.h
1 #ifndef _RAID0_H
2 #define _RAID0_H
3
4 struct strip_zone
5 {
6         sector_t zone_end;      /* Start of the next zone (in sectors) */
7         sector_t dev_start;     /* Zone offset in real dev (in sectors) */
8         sector_t sectors;       /* Zone size in sectors */
9         int nb_dev;             /* # of devices attached to the zone */
10         mdk_rdev_t **dev;       /* Devices attached to the zone */
11 };
12
13 struct raid0_private_data
14 {
15         struct strip_zone *strip_zone;
16         mdk_rdev_t **devlist; /* lists of rdevs, pointed to by strip_zone->dev */
17         int nr_strip_zones;
18 };
19
20 typedef struct raid0_private_data raid0_conf_t;
21
22 #define mddev_to_conf(mddev) ((raid0_conf_t *) mddev->private)
23
24 #endif