]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/md/linear.h
Merge branch 'for_3.2/gpio-cleanup' of git://gitorious.org/khilman/linux-omap-pm...
[mirror_ubuntu-bionic-kernel.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 struct rcu_head rcu;
14 sector_t array_sectors;
15 dev_info_t disks[0];
16 };
17
18
19 typedef struct linear_private_data linear_conf_t;
20
21 #endif