diff options
-rw-r--r-- | drivers/md/dm.c | 10 | ||||
-rw-r--r-- | drivers/md/dm.h | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 27cd234cf682..9e8c1edd89dd 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -921,6 +921,16 @@ static struct mapped_device *dm_find_md(dev_t dev) | |||
921 | return md; | 921 | return md; |
922 | } | 922 | } |
923 | 923 | ||
924 | struct mapped_device *dm_get_md(dev_t dev) | ||
925 | { | ||
926 | struct mapped_device *md = dm_find_md(dev); | ||
927 | |||
928 | if (md) | ||
929 | dm_get(md); | ||
930 | |||
931 | return md; | ||
932 | } | ||
933 | |||
924 | void *dm_get_mdptr(dev_t dev) | 934 | void *dm_get_mdptr(dev_t dev) |
925 | { | 935 | { |
926 | struct mapped_device *md; | 936 | struct mapped_device *md; |
diff --git a/drivers/md/dm.h b/drivers/md/dm.h index e38c3fc1a1db..ab078a249396 100644 --- a/drivers/md/dm.h +++ b/drivers/md/dm.h | |||
@@ -58,6 +58,7 @@ int dm_create(struct mapped_device **md); | |||
58 | int dm_create_with_minor(unsigned int minor, struct mapped_device **md); | 58 | int dm_create_with_minor(unsigned int minor, struct mapped_device **md); |
59 | void dm_set_mdptr(struct mapped_device *md, void *ptr); | 59 | void dm_set_mdptr(struct mapped_device *md, void *ptr); |
60 | void *dm_get_mdptr(dev_t dev); | 60 | void *dm_get_mdptr(dev_t dev); |
61 | struct mapped_device *dm_get_md(dev_t dev); | ||
61 | 62 | ||
62 | /* | 63 | /* |
63 | * Reference counting for md. | 64 | * Reference counting for md. |