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