md: move lots of #include lines out of .h files and into .c
[deliverable/linux.git] / drivers / md / raid0.h
CommitLineData
1da177e4
LT
1#ifndef _RAID0_H
2#define _RAID0_H
3
1da177e4
LT
4struct strip_zone
5{
6199d3db 6 sector_t zone_start; /* Zone offset in md_dev (in sectors) */
019c4e2f 7 sector_t dev_start; /* Zone offset in real dev (in sectors) */
83838ed8 8 sector_t sectors; /* Zone size in sectors */
1da177e4
LT
9 int nb_dev; /* # of devices attached to the zone */
10 mdk_rdev_t **dev; /* Devices attached to the zone */
11};
12
13struct raid0_private_data
14{
15 struct strip_zone **hash_table; /* Table of indexes into strip_zone */
16 struct strip_zone *strip_zone;
17 mdk_rdev_t **devlist; /* lists of rdevs, pointed to by strip_zone->dev */
18 int nr_strip_zones;
19
ccacc7d2
AN
20 sector_t spacing;
21 int sector_shift; /* shift this before divide by spacing */
1da177e4
LT
22};
23
24typedef struct raid0_private_data raid0_conf_t;
25
26#define mddev_to_conf(mddev) ((raid0_conf_t *) mddev->private)
27
28#endif
This page took 0.586908 seconds and 5 git commands to generate.