diff options
author | NeilBrown <neilb@suse.de> | 2011-10-11 16:48:43 +1100 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2011-10-11 16:48:43 +1100 |
commit | 9f2c9d12bcc53fcb3b787023723754e84d1aef8b (patch) | |
tree | 85fbc63c6e480bdebe06529e1af4d3d483d70452 /drivers/md/raid10.h | |
parent | 2b8bf3451d1e3133ebc3998721d14013a6c27114 (diff) |
md: remove typedefs: r10bio_t -> struct r10bio and r1bio_t -> struct r1bio
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/raid10.h')
-rw-r--r-- | drivers/md/raid10.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/md/raid10.h b/drivers/md/raid10.h index c7721365f7bd..be7f8d9cfc63 100644 --- a/drivers/md/raid10.h +++ b/drivers/md/raid10.h @@ -13,8 +13,6 @@ struct mirror_info { */ }; -typedef struct r10bio_s r10bio_t; - struct r10_private_data_s { struct mddev *mddev; mirror_info_t *mirrors; @@ -80,7 +78,7 @@ typedef struct r10_private_data_s conf_t; * for this RAID10 operation, and about their status: */ -struct r10bio_s { +struct r10bio { atomic_t remaining; /* 'have we finished' count, * used from IRQ handlers */ |