diff options
Diffstat (limited to 'drivers/md/multipath.h')
| -rw-r--r-- | drivers/md/multipath.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/drivers/md/multipath.h b/drivers/md/multipath.h index 6fa70b400cd..717c60f6289 100644 --- a/drivers/md/multipath.h +++ b/drivers/md/multipath.h @@ -2,28 +2,19 @@ #define _MULTIPATH_H struct multipath_info { - mdk_rdev_t *rdev; + struct md_rdev *rdev; }; -struct multipath_private_data { - mddev_t *mddev; +struct mpconf { + struct mddev *mddev; struct multipath_info *multipaths; int raid_disks; - int working_disks; spinlock_t device_lock; struct list_head retry_list; mempool_t *pool; }; -typedef struct multipath_private_data multipath_conf_t; - -/* - * this is the only point in the RAID code where we violate - * C type safety. mddev->private is an 'opaque' pointer. - */ -#define mddev_to_conf(mddev) ((multipath_conf_t *) mddev->private) - /* * this is our 'private' 'collective' MULTIPATH buffer head. * it contains information about what kind of IO operations were started @@ -31,7 +22,7 @@ typedef struct multipath_private_data multipath_conf_t; */ struct multipath_bh { - mddev_t *mddev; + struct mddev *mddev; struct bio *master_bio; struct bio bio; int path; |
