2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _LINEAR_H
|
|
|
|
#define _LINEAR_H
|
|
|
|
|
|
|
|
struct dev_info {
|
|
|
|
mdk_rdev_t *rdev;
|
2009-06-16 00:56:13 -06:00
|
|
|
sector_t end_sector;
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct dev_info dev_info_t;
|
|
|
|
|
|
|
|
struct linear_private_data
|
|
|
|
{
|
2008-07-21 01:05:25 -06:00
|
|
|
sector_t array_sectors;
|
2005-04-16 16:20:36 -06:00
|
|
|
dev_info_t disks[0];
|
2009-06-17 16:49:42 -06:00
|
|
|
struct rcu_head rcu;
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct linear_private_data linear_conf_t;
|
|
|
|
|
|
|
|
#endif
|