blob: 4d0cf3c7cd466e285658535d254687bf8fc0cb68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _LINEAR_H
#define _LINEAR_H
struct dev_info {
struct md_rdev *rdev;
sector_t end_sector;
};
struct linear_private_data
{
struct rcu_head rcu;
sector_t array_sectors;
struct dev_info disks[0];
};
typedef struct linear_private_data linear_conf_t;
#endif
|