md/linear: typedef removal: linear_conf_t -> struct linear_conf
[deliverable/linux.git] / drivers / md / multipath.h
CommitLineData
1da177e4
LT
1#ifndef _MULTIPATH_H
2#define _MULTIPATH_H
3
1da177e4 4struct multipath_info {
3cb03002 5 struct md_rdev *rdev;
1da177e4
LT
6};
7
8struct multipath_private_data {
fd01b88c 9 struct mddev *mddev;
1da177e4
LT
10 struct multipath_info *multipaths;
11 int raid_disks;
1da177e4
LT
12 spinlock_t device_lock;
13 struct list_head retry_list;
14
15 mempool_t *pool;
16};
17
18typedef struct multipath_private_data multipath_conf_t;
19
1da177e4
LT
20/*
21 * this is our 'private' 'collective' MULTIPATH buffer head.
22 * it contains information about what kind of IO operations were started
23 * for this MULTIPATH operation, and about their status:
24 */
25
26struct multipath_bh {
fd01b88c 27 struct mddev *mddev;
1da177e4
LT
28 struct bio *master_bio;
29 struct bio bio;
30 int path;
31 struct list_head retry_list;
32};
33#endif
This page took 0.737959 seconds and 5 git commands to generate.