diff options
author | NeilBrown <neilb@suse.de> | 2011-10-11 09:48:57 +0400 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2011-10-11 09:48:57 +0400 |
commit | 69724e28ca99990a8f0b5370bb946d7704936d67 (patch) | |
tree | b811de8d2d76a7976a9ef26d2bffddb7289ae495 /drivers/md/multipath.h | |
parent | e849b9381f726c0fa20c4e7b7139b936df777084 (diff) | |
download | linux-69724e28ca99990a8f0b5370bb946d7704936d67.tar.xz |
md/multipath: typedef removal: multipath_conf_t -> struct mpconf
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/multipath.h')
-rw-r--r-- | drivers/md/multipath.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/md/multipath.h b/drivers/md/multipath.h index 350a631b6c93..717c60f62898 100644 --- a/drivers/md/multipath.h +++ b/drivers/md/multipath.h @@ -5,7 +5,7 @@ struct multipath_info { struct md_rdev *rdev; }; -struct multipath_private_data { +struct mpconf { struct mddev *mddev; struct multipath_info *multipaths; int raid_disks; @@ -15,8 +15,6 @@ struct multipath_private_data { mempool_t *pool; }; -typedef struct multipath_private_data multipath_conf_t; - /* * this is our 'private' 'collective' MULTIPATH buffer head. * it contains information about what kind of IO operations were started |