2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _LINEAR_H
|
|
|
|
#define _LINEAR_H
|
|
|
|
|
|
|
|
struct dev_info {
|
2011-10-10 23:45:26 -06:00
|
|
|
struct md_rdev *rdev;
|
2009-06-16 00:56:13 -06:00
|
|
|
sector_t end_sector;
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
struct linear_private_data
|
|
|
|
{
|
2011-08-24 22:43:53 -06:00
|
|
|
struct rcu_head rcu;
|
2008-07-21 01:05:25 -06:00
|
|
|
sector_t array_sectors;
|
2011-10-10 23:48:49 -06:00
|
|
|
struct dev_info disks[0];
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct linear_private_data linear_conf_t;
|
|
|
|
|
|
|
|
#endif
|