patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / linux / raid / raid1.h
1 #ifndef _RAID1_H
2 #define _RAID1_H
3
4 #include <linux/raid/md.h>
5
6 typedef struct mirror_info mirror_info_t;
7
8 struct mirror_info {
9         mdk_rdev_t      *rdev;
10         sector_t        head_position;
11 };
12
13 /*
14  * memory pools need a pointer to the mddev, so they can force an unplug
15  * when memory is tight, and a count of the number of drives that the
16  * pool was allocated for, so they know how much to allocate and free.
17  * mddev->raid_disks cannot be used, as it can change while a pool is active
18  * These two datums are stored in a kmalloced struct.
19  */
20
21 struct pool_info {
22         mddev_t *mddev;
23         int     raid_disks;
24 };
25
26
27 typedef struct r1bio_s r1bio_t;
28
29 struct r1_private_data_s {
30         mddev_t                 *mddev;
31         mirror_info_t           *mirrors;
32         int                     raid_disks;
33         int                     working_disks;
34         int                     last_used;
35         sector_t                next_seq_sect;
36         spinlock_t              device_lock;
37
38         /* for use when syncing mirrors: */
39
40         spinlock_t              resync_lock;
41         int nr_pending;
42         int barrier;
43         sector_t                next_resync;
44
45         wait_queue_head_t       wait_idle;
46         wait_queue_head_t       wait_resume;
47
48         struct pool_info        *poolinfo;
49
50         mempool_t *r1bio_pool;
51         mempool_t *r1buf_pool;
52 };
53
54 typedef struct r1_private_data_s conf_t;
55
56 /*
57  * this is the only point in the RAID code where we violate
58  * C type safety. mddev->private is an 'opaque' pointer.
59  */
60 #define mddev_to_conf(mddev) ((conf_t *) mddev->private)
61
62 /*
63  * this is our 'private' RAID1 bio.
64  *
65  * it contains information about what kind of IO operations were started
66  * for this RAID1 operation, and about their status:
67  */
68
69 struct r1bio_s {
70         atomic_t                remaining; /* 'have we finished' count,
71                                             * used from IRQ handlers
72                                             */
73         sector_t                sector;
74         int                     sectors;
75         unsigned long           state;
76         mddev_t                 *mddev;
77         /*
78          * original bio going to /dev/mdx
79          */
80         struct bio              *master_bio;
81         /*
82          * if the IO is in READ direction, then this is where we read
83          */
84         int                     read_disk;
85
86         struct list_head        retry_list;
87         /*
88          * if the IO is in WRITE direction, then multiple bios are used.
89          * We choose the number when they are allocated.
90          */
91         struct bio              *bios[0];
92 };
93
94 /* bits for r1bio.state */
95 #define R1BIO_Uptodate  0
96 #define R1BIO_IsSync    1
97 #endif