summaryrefslogtreecommitdiff
path: root/drivers/md
diff options
context:
space:
mode:
authorJonathan Brassow <jbrassow@redhat.com>2007-10-19 21:47:58 (GMT)
committerAlasdair G Kergon <agk@redhat.com>2007-10-20 01:01:22 (GMT)
commitaa5617c55357d86c9082ba1d66fa9795370c9954 (patch)
tree9dd542c6ce1a5d14cb6366113645cdb7131350a2 /drivers/md
parent6b3df0d7a5e85ad2afd3eecc50e2dee59e876ae8 (diff)
downloadlinux-fsl-qoriq-aa5617c55357d86c9082ba1d66fa9795370c9954.tar.xz
dm raid1: add mirror_set to struct mirror
Store a pointer to the owning mirror_set structure within each mirror structure for a subsequent patch to use. Signed-off-by: Jonathan Brassow <jbrassow@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-raid1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
index 8aafbb7..31123d4 100644
--- a/drivers/md/dm-raid1.c
+++ b/drivers/md/dm-raid1.c
@@ -114,6 +114,7 @@ struct region {
* Mirror set structures.
*---------------------------------------------------------------*/
struct mirror {
+ struct mirror_set *ms;
atomic_t error_count;
struct dm_dev *dev;
sector_t offset;
@@ -1017,6 +1018,7 @@ static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
return -ENXIO;
}
+ ms->mirror[mirror].ms = ms;
ms->mirror[mirror].offset = offset;
return 0;