Merge git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-linus
[deliverable/linux.git] / drivers / md / linear.h
1 #ifndef _LINEAR_H
2 #define _LINEAR_H
3
4 struct dev_info {
5 mdk_rdev_t *rdev;
6 sector_t end_sector;
7 };
8
9 typedef struct dev_info dev_info_t;
10
11 struct linear_private_data
12 {
13 sector_t array_sectors;
14 dev_info_t disks[0];
15 struct rcu_head rcu;
16 };
17
18
19 typedef struct linear_private_data linear_conf_t;
20
21 #endif
This page took 0.030663 seconds and 5 git commands to generate.