md: remove typedefs: mddev_t -> struct mddev

Having mddev_t and 'struct mddev_s' is ugly and not preferred

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown
2011-10-11 16:47:53 +11:00
parent 3cb0300200
commit fd01b88c75
16 changed files with 416 additions and 419 deletions

View File

@@ -16,7 +16,7 @@ struct mirror_info {
typedef struct r10bio_s r10bio_t;
struct r10_private_data_s {
mddev_t *mddev;
struct mddev *mddev;
mirror_info_t *mirrors;
int raid_disks;
spinlock_t device_lock;
@@ -87,7 +87,7 @@ struct r10bio_s {
sector_t sector; /* virtual sector number */
int sectors;
unsigned long state;
mddev_t *mddev;
struct mddev *mddev;
/*
* original bio going to /dev/mdx
*/