* dm: When stoping dm-raid, it call dm_md_stop rather than md_stop to do clear-up work
@ 2012-11-15 8:47 majianpeng
0 siblings, 0 replies; only message in thread
From: majianpeng @ 2012-11-15 8:47 UTC (permalink / raw)
To: NeilBrown, agk; +Cc: linux-raid, dm-devel
Because func md_stop can't clear up all resource about dm-raid.So Add a
func dm_md_stop to do it.
Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
---
drivers/md/dm-raid.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c
index 45d94a7..171cd71 100644
--- a/drivers/md/dm-raid.c
+++ b/drivers/md/dm-raid.c
@@ -1200,7 +1200,7 @@ static int raid_ctr(struct dm_target *ti, unsigned argc, char **argv)
return 0;
size_mismatch:
- md_stop(&rs->md);
+ dm_md_stop(&rs->md);
bad:
context_free(rs);
@@ -1212,7 +1212,7 @@ static void raid_dtr(struct dm_target *ti)
struct raid_set *rs = ti->private;
list_del_init(&rs->callbacks.list);
- md_stop(&rs->md);
+ dm_md_stop(&rs->md);
context_free(rs);
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-11-15 8:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-15 8:47 dm: When stoping dm-raid, it call dm_md_stop rather than md_stop to do clear-up work majianpeng
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.