Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / md / multipath.h
blob3c5a45eb5f8a14ef8e8caf372470a73ce0dc7700
1 #ifndef _MULTIPATH_H
2 #define _MULTIPATH_H
4 struct multipath_info {
5 mdk_rdev_t *rdev;
6 };
8 struct multipath_private_data {
9 mddev_t *mddev;
10 struct multipath_info *multipaths;
11 int raid_disks;
12 spinlock_t device_lock;
13 struct list_head retry_list;
15 mempool_t *pool;
18 typedef struct multipath_private_data multipath_conf_t;
21 * this is our 'private' 'collective' MULTIPATH buffer head.
22 * it contains information about what kind of IO operations were started
23 * for this MULTIPATH operation, and about their status:
26 struct multipath_bh {
27 mddev_t *mddev;
28 struct bio *master_bio;
29 struct bio bio;
30 int path;
31 struct list_head retry_list;
33 #endif