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