This patch changes multipath-tools to use request-based dm-multipath.
This patch should be applied on top of 8/28/2007 git multipath-tools.
Request-based dm itself is still under development and not ready
for inclusion.
Signed-off-by: Kiyoshi Ueda <[email protected]>
Signed-off-by: Jun'ichi Nomura <[email protected]>
---
devmapper.c | 2 ++
1 files changed, 2 insertions(+)
diff -rupN git-multipath-tools-20070828/libmultipath/devmapper.c rqdm-multipath-tools/libmultipath/devmapper.c
--- git-multipath-tools-20070828/libmultipath/devmapper.c 2007-08-28 17:05:25.000000000 -0400
+++ rqdm-multipath-tools/libmultipath/devmapper.c 2007-08-28 17:50:47.000000000 -0400
@@ -174,6 +174,7 @@ dm_simplecmd (int task, const char *name
#ifdef LIBDM_API_FLUSH
dm_task_no_flush(dmt); /* for DM_DEVICE_SUSPEND/RESUME */
#endif
+ dm_task_request_base(dmt);
r = dm_task_run (dmt);
@@ -211,6 +212,7 @@ dm_addmap (int task, const char *name, c
}
dm_task_no_open_count(dmt);
+ dm_task_request_base(dmt);
r = dm_task_run (dmt);