diff options
author | Alasdair G Kergon <agk@redhat.com> | 2006-03-27 04:17:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:59 -0500 |
commit | 9ade92a9a5b0a3a10efa6551b8c67a9277bf0438 (patch) | |
tree | 976b3d4f8a90d08cf9db1f7afb40423570360d85 /drivers/md/dm.c | |
parent | 7e51f257e87297a5b6fe6d136a8ef67206aaf3a8 (diff) |
[PATCH] dm: tidy mdptr
Change dm_get_mdptr() to take a struct mapped_device instead of dev_t.
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/dm.c')
-rw-r--r-- | drivers/md/dm.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index f140d499602a..3d121cbc2fde 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -990,15 +990,9 @@ struct mapped_device *dm_get_md(dev_t dev) | |||
990 | return md; | 990 | return md; |
991 | } | 991 | } |
992 | 992 | ||
993 | void *dm_get_mdptr(dev_t dev) | 993 | void *dm_get_mdptr(struct mapped_device *md) |
994 | { | 994 | { |
995 | struct mapped_device *md; | 995 | return md->interface_ptr; |
996 | void *mdptr = NULL; | ||
997 | |||
998 | md = dm_find_md(dev); | ||
999 | if (md) | ||
1000 | mdptr = md->interface_ptr; | ||
1001 | return mdptr; | ||
1002 | } | 996 | } |
1003 | 997 | ||
1004 | void dm_set_mdptr(struct mapped_device *md, void *ptr) | 998 | void dm_set_mdptr(struct mapped_device *md, void *ptr) |