aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/raid/raid5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/raid/raid5.h b/include/linux/raid/raid5.h
index 28fcd7533ac4..394da8207b34 100644
--- a/include/linux/raid/raid5.h
+++ b/include/linux/raid/raid5.h
@@ -126,7 +126,7 @@
126 */ 126 */
127 127
128struct stripe_head { 128struct stripe_head {
129 struct stripe_head *hash_next, **hash_pprev; /* hash pointers */ 129 struct hlist_node hash;
130 struct list_head lru; /* inactive_list or handle_list */ 130 struct list_head lru; /* inactive_list or handle_list */
131 struct raid5_private_data *raid_conf; 131 struct raid5_private_data *raid_conf;
132 sector_t sector; /* sector of this row */ 132 sector_t sector; /* sector of this row */
@@ -204,7 +204,7 @@ struct disk_info {
204}; 204};
205 205
206struct raid5_private_data { 206struct raid5_private_data {
207 struct stripe_head **stripe_hashtbl; 207 struct hlist_head *stripe_hashtbl;
208 mddev_t *mddev; 208 mddev_t *mddev;
209 struct disk_info *spare; 209 struct disk_info *spare;
210 int chunk_size, level, algorithm; 210 int chunk_size, level, algorithm;