drivers/rtc/rtc-mc13xxx.c: move probe and remove callbacks to .init.text and .exit...
[deliverable/linux.git] / drivers / md / raid0.h
1 #ifndef _RAID0_H
2 #define _RAID0_H
3
4 struct strip_zone {
5 sector_t zone_end; /* Start of the next zone (in sectors) */
6 sector_t dev_start; /* Zone offset in real dev (in sectors) */
7 int nb_dev; /* # of devices attached to the zone */
8 };
9
10 struct r0conf {
11 struct strip_zone *strip_zone;
12 struct md_rdev **devlist; /* lists of rdevs, pointed to by strip_zone->dev */
13 int nr_strip_zones;
14 };
15
16 #endif
This page took 0.041598 seconds and 5 git commands to generate.