https://jxself.org/git/linux-libre.git
Raw File
Tip revision: f1c7d9efd800ea85e1f8c41f798eb7ba7f623830 authored by Jason Self on 07 October 2012, 15:28:42 UTC
Linux-libre 3.0.45-gnu1
Tip revision: f1c7d9e
raid0.h
#ifndef _RAID0_H
#define _RAID0_H

struct strip_zone
{
	sector_t zone_end;	/* Start of the next zone (in sectors) */
	sector_t dev_start;	/* Zone offset in real dev (in sectors) */
	int nb_dev;		/* # of devices attached to the zone */
};

struct raid0_private_data
{
	struct strip_zone *strip_zone;
	mdk_rdev_t **devlist; /* lists of rdevs, pointed to by strip_zone->dev */
	int nr_strip_zones;
};

typedef struct raid0_private_data raid0_conf_t;

#endif
back to top