aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikulas Patocka <mpatocka@redhat.com>2008-10-10 13:37:11 +0100
committerAlasdair G Kergon <agk@redhat.com>2008-10-10 13:37:11 +0100
commitea0ec640940c2ae3a8d71af3249fccf06a9997a3 (patch)
tree1ee9b5f228d1ab415d1853eed6508e2f2b85ef5e
parentdm: publish dm_get_mapinfo (diff)
downloadlinux-dev-ea0ec640940c2ae3a8d71af3249fccf06a9997a3.tar.xz
linux-dev-ea0ec640940c2ae3a8d71af3249fccf06a9997a3.zip
dm: publish dm_table_unplug_all
Publish dm_table_unplug_all in include/linux/device-mapper.h because this function is used by targets. Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
-rw-r--r--drivers/md/dm.h1
-rw-r--r--include/linux/device-mapper.h5
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/md/dm.h b/drivers/md/dm.h
index 911d434361dd..8812208978e3 100644
--- a/drivers/md/dm.h
+++ b/drivers/md/dm.h
@@ -46,7 +46,6 @@ void dm_table_presuspend_targets(struct dm_table *t);
void dm_table_postsuspend_targets(struct dm_table *t);
int dm_table_resume_targets(struct dm_table *t);
int dm_table_any_congested(struct dm_table *t, int bdi_bits);
-void dm_table_unplug_all(struct dm_table *t);
/*
* To check the return value from dm_table_find_target().
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h
index 6b80961650f0..e462c7f3b391 100644
--- a/include/linux/device-mapper.h
+++ b/include/linux/device-mapper.h
@@ -238,6 +238,11 @@ int dm_table_add_target(struct dm_table *t, const char *type,
int dm_table_complete(struct dm_table *t);
/*
+ * Unplug all devices in a table.
+ */
+void dm_table_unplug_all(struct dm_table *t);
+
+/*
* Table reference counting.
*/
struct dm_table *dm_get_table(struct mapped_device *md);