|
|
e41771 |
---
|
|
|
e41771 |
kpartx/devmapper.c | 4 ++--
|
|
|
e41771 |
kpartx/devmapper.h | 8 +++++++-
|
|
|
e41771 |
kpartx/kpartx.c | 6 +++---
|
|
|
e41771 |
libmultipath/configure.c | 4 ++--
|
|
|
e41771 |
libmultipath/devmapper.c | 26 ++++++++++++++------------
|
|
|
e41771 |
libmultipath/devmapper.h | 10 ++++++++--
|
|
|
e41771 |
multipathd/cli_handlers.c | 4 ++--
|
|
|
e41771 |
7 files changed, 38 insertions(+), 24 deletions(-)
|
|
|
e41771 |
|
|
|
e41771 |
Index: multipath-tools-130222/kpartx/devmapper.c
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/kpartx/devmapper.c
|
|
|
e41771 |
+++ multipath-tools-130222/kpartx/devmapper.c
|
|
|
e41771 |
@@ -60,7 +60,7 @@ dm_prereq (char * str, int x, int y, int
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
extern int
|
|
|
e41771 |
-dm_simplecmd (int task, const char *name, int no_flush, uint32_t *cookie) {
|
|
|
e41771 |
+dm_simplecmd (int task, const char *name, int no_flush, uint32_t *cookie, uint16_t udev_flags) {
|
|
|
e41771 |
int r = 0;
|
|
|
e41771 |
int udev_wait_flag = (task == DM_DEVICE_RESUME ||
|
|
|
e41771 |
task == DM_DEVICE_REMOVE);
|
|
|
e41771 |
@@ -78,7 +78,7 @@ dm_simplecmd (int task, const char *name
|
|
|
e41771 |
if (no_flush)
|
|
|
e41771 |
dm_task_no_flush(dmt);
|
|
|
e41771 |
|
|
|
e41771 |
- if (udev_wait_flag && !dm_task_set_cookie(dmt, cookie, (udev_sync)? 0 : DM_UDEV_DISABLE_LIBRARY_FALLBACK))
|
|
|
e41771 |
+ if (udev_wait_flag && !dm_task_set_cookie(dmt, cookie, ((udev_sync)? 0 : DM_UDEV_DISABLE_LIBRARY_FALLBACK) | udev_flags))
|
|
|
e41771 |
goto out;
|
|
|
e41771 |
r = dm_task_run(dmt);
|
|
|
e41771 |
|
|
|
e41771 |
Index: multipath-tools-130222/kpartx/devmapper.h
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/kpartx/devmapper.h
|
|
|
e41771 |
+++ multipath-tools-130222/kpartx/devmapper.h
|
|
|
e41771 |
@@ -2,10 +2,16 @@
|
|
|
e41771 |
#define MINOR(dev) ((dev & 0xff) | ((dev >> 12) & 0xfff00))
|
|
|
e41771 |
#define MKDEV(ma,mi) ((mi & 0xff) | (ma << 8) | ((mi & ~0xff) << 12))
|
|
|
e41771 |
|
|
|
e41771 |
+#ifdef DM_SUBSYSTEM_UDEV_FLAG0
|
|
|
e41771 |
+#define MPATH_UDEV_RELOAD_FLAG DM_SUBSYSTEM_UDEV_FLAG0
|
|
|
e41771 |
+#else
|
|
|
e41771 |
+#define MPATH_UDEV_RELOAD_FLAG 0
|
|
|
e41771 |
+#endif
|
|
|
e41771 |
+
|
|
|
e41771 |
extern int udev_sync;
|
|
|
e41771 |
|
|
|
e41771 |
int dm_prereq (char *, int, int, int);
|
|
|
e41771 |
-int dm_simplecmd (int, const char *, int, uint32_t *);
|
|
|
e41771 |
+int dm_simplecmd (int, const char *, int, uint32_t *, uint16_t);
|
|
|
e41771 |
int dm_addmap (int, const char *, const char *, const char *, uint64_t,
|
|
|
e41771 |
int, const char *, int, mode_t, uid_t, gid_t, uint32_t *);
|
|
|
e41771 |
int dm_map_present (char *);
|
|
|
e41771 |
Index: multipath-tools-130222/kpartx/kpartx.c
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/kpartx/kpartx.c
|
|
|
e41771 |
+++ multipath-tools-130222/kpartx/kpartx.c
|
|
|
e41771 |
@@ -421,7 +421,7 @@ main(int argc, char **argv){
|
|
|
e41771 |
continue;
|
|
|
e41771 |
|
|
|
e41771 |
if (!dm_simplecmd(DM_DEVICE_REMOVE, partname,
|
|
|
e41771 |
- 0, &cookie)) {
|
|
|
e41771 |
+ 0, &cookie, 0)) {
|
|
|
e41771 |
r++;
|
|
|
e41771 |
continue;
|
|
|
e41771 |
}
|
|
|
e41771 |
@@ -473,7 +473,7 @@ main(int argc, char **argv){
|
|
|
e41771 |
}
|
|
|
e41771 |
if (op == DM_DEVICE_RELOAD &&
|
|
|
e41771 |
!dm_simplecmd(DM_DEVICE_RESUME, partname,
|
|
|
e41771 |
- 1, &cookie)) {
|
|
|
e41771 |
+ 1, &cookie, MPATH_UDEV_RELOAD_FLAG)) {
|
|
|
e41771 |
fprintf(stderr, "resume failed on %s\n",
|
|
|
e41771 |
partname);
|
|
|
e41771 |
r++;
|
|
|
e41771 |
@@ -505,7 +505,7 @@ main(int argc, char **argv){
|
|
|
e41771 |
continue;
|
|
|
e41771 |
|
|
|
e41771 |
if (!dm_simplecmd(DM_DEVICE_REMOVE,
|
|
|
e41771 |
- partname, 1, &cookie)) {
|
|
|
e41771 |
+ partname, 1, &cookie, 0)) {
|
|
|
e41771 |
r++;
|
|
|
e41771 |
continue;
|
|
|
e41771 |
}
|
|
|
e41771 |
Index: multipath-tools-130222/libmultipath/configure.c
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/libmultipath/configure.c
|
|
|
e41771 |
+++ multipath-tools-130222/libmultipath/configure.c
|
|
|
e41771 |
@@ -390,13 +390,13 @@ domap (struct multipath * mpp, char * pa
|
|
|
e41771 |
case ACT_RELOAD:
|
|
|
e41771 |
r = dm_addmap_reload(mpp, params);
|
|
|
e41771 |
if (r)
|
|
|
e41771 |
- r = dm_simplecmd_noflush(DM_DEVICE_RESUME, mpp->alias);
|
|
|
e41771 |
+ r = dm_simplecmd_noflush(DM_DEVICE_RESUME, mpp->alias, MPATH_UDEV_RELOAD_FLAG);
|
|
|
e41771 |
break;
|
|
|
e41771 |
|
|
|
e41771 |
case ACT_RESIZE:
|
|
|
e41771 |
r = dm_addmap_reload(mpp, params);
|
|
|
e41771 |
if (r)
|
|
|
e41771 |
- r = dm_simplecmd_flush(DM_DEVICE_RESUME, mpp->alias, 1);
|
|
|
e41771 |
+ r = dm_simplecmd_flush(DM_DEVICE_RESUME, mpp->alias, 1, 0);
|
|
|
e41771 |
break;
|
|
|
e41771 |
|
|
|
e41771 |
case ACT_RENAME:
|
|
|
e41771 |
Index: multipath-tools-130222/libmultipath/devmapper.c
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/libmultipath/devmapper.c
|
|
|
e41771 |
+++ multipath-tools-130222/libmultipath/devmapper.c
|
|
|
e41771 |
@@ -103,7 +103,9 @@ dm_lib_prereq (void)
|
|
|
e41771 |
{
|
|
|
e41771 |
char version[64];
|
|
|
e41771 |
int v[3];
|
|
|
e41771 |
-#ifdef LIBDM_API_COOKIE
|
|
|
e41771 |
+#if defined(DM_SUBSYSTEM_UDEV_FLAG0)
|
|
|
e41771 |
+ int minv[3] = {1, 2, 82};
|
|
|
e41771 |
+#elif defined(LIBDM_API_COOKIE)
|
|
|
e41771 |
int minv[3] = {1, 2, 38};
|
|
|
e41771 |
#else
|
|
|
e41771 |
int minv[3] = {1, 2, 8};
|
|
|
e41771 |
@@ -200,7 +202,7 @@ dm_prereq (void)
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
static int
|
|
|
e41771 |
-dm_simplecmd (int task, const char *name, int no_flush, int need_sync) {
|
|
|
e41771 |
+dm_simplecmd (int task, const char *name, int no_flush, int need_sync, uint16_t udev_flags) {
|
|
|
e41771 |
int r = 0;
|
|
|
e41771 |
int udev_wait_flag = (need_sync && (task == DM_DEVICE_RESUME ||
|
|
|
e41771 |
task == DM_DEVICE_REMOVE));
|
|
|
e41771 |
@@ -219,7 +221,7 @@ dm_simplecmd (int task, const char *name
|
|
|
e41771 |
dm_task_no_flush(dmt); /* for DM_DEVICE_SUSPEND/RESUME */
|
|
|
e41771 |
#endif
|
|
|
e41771 |
|
|
|
e41771 |
- if (udev_wait_flag && !dm_task_set_cookie(dmt, &conf->cookie, (conf->daemon)? DM_UDEV_DISABLE_LIBRARY_FALLBACK : 0))
|
|
|
e41771 |
+ if (udev_wait_flag && !dm_task_set_cookie(dmt, &conf->cookie, ((conf->daemon)? DM_UDEV_DISABLE_LIBRARY_FALLBACK : 0) | udev_flags))
|
|
|
e41771 |
goto out;
|
|
|
e41771 |
r = dm_task_run (dmt);
|
|
|
e41771 |
|
|
|
e41771 |
@@ -229,13 +231,13 @@ dm_simplecmd (int task, const char *name
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
extern int
|
|
|
e41771 |
-dm_simplecmd_flush (int task, const char *name, int needsync) {
|
|
|
e41771 |
- return dm_simplecmd(task, name, 0, needsync);
|
|
|
e41771 |
+dm_simplecmd_flush (int task, const char *name, int needsync, uint16_t udev_flags) {
|
|
|
e41771 |
+ return dm_simplecmd(task, name, 0, needsync, udev_flags);
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
extern int
|
|
|
e41771 |
-dm_simplecmd_noflush (int task, const char *name) {
|
|
|
e41771 |
- return dm_simplecmd(task, name, 1, 1);
|
|
|
e41771 |
+dm_simplecmd_noflush (int task, const char *name, uint16_t udev_flags) {
|
|
|
e41771 |
+ return dm_simplecmd(task, name, 1, 1, udev_flags);
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
extern int
|
|
|
e41771 |
@@ -670,7 +672,7 @@ _dm_flush_map (const char * mapname, int
|
|
|
e41771 |
return 1;
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
- r = dm_simplecmd_flush(DM_DEVICE_REMOVE, mapname, need_sync);
|
|
|
e41771 |
+ r = dm_simplecmd_flush(DM_DEVICE_REMOVE, mapname, need_sync, 0);
|
|
|
e41771 |
|
|
|
e41771 |
if (r) {
|
|
|
e41771 |
condlog(4, "multipath map %s removed", mapname);
|
|
|
e41771 |
@@ -703,14 +705,14 @@ dm_suspend_and_flush_map (const char * m
|
|
|
e41771 |
if (s)
|
|
|
e41771 |
queue_if_no_path = 0;
|
|
|
e41771 |
else
|
|
|
e41771 |
- s = dm_simplecmd_flush(DM_DEVICE_SUSPEND, mapname, 0);
|
|
|
e41771 |
+ s = dm_simplecmd_flush(DM_DEVICE_SUSPEND, mapname, 0, 0);
|
|
|
e41771 |
|
|
|
e41771 |
if (!dm_flush_map(mapname)) {
|
|
|
e41771 |
condlog(4, "multipath map %s removed", mapname);
|
|
|
e41771 |
return 0;
|
|
|
e41771 |
}
|
|
|
e41771 |
condlog(2, "failed to remove multipath map %s", mapname);
|
|
|
e41771 |
- dm_simplecmd_noflush(DM_DEVICE_RESUME, mapname);
|
|
|
e41771 |
+ dm_simplecmd_noflush(DM_DEVICE_RESUME, mapname, 0);
|
|
|
e41771 |
if (queue_if_no_path)
|
|
|
e41771 |
s = dm_queue_if_no_path((char *)mapname, 1);
|
|
|
e41771 |
return 1;
|
|
|
e41771 |
@@ -1077,7 +1079,7 @@ dm_remove_partmaps (const char * mapname
|
|
|
e41771 |
condlog(4, "partition map %s removed",
|
|
|
e41771 |
names->name);
|
|
|
e41771 |
dm_simplecmd_flush(DM_DEVICE_REMOVE, names->name,
|
|
|
e41771 |
- need_sync);
|
|
|
e41771 |
+ need_sync, 0);
|
|
|
e41771 |
}
|
|
|
e41771 |
|
|
|
e41771 |
next = names->next;
|
|
|
e41771 |
@@ -1305,7 +1307,7 @@ int dm_reassign_table(const char *name,
|
|
|
e41771 |
condlog(3, "%s: failed to reassign targets", name);
|
|
|
e41771 |
goto out_reload;
|
|
|
e41771 |
}
|
|
|
e41771 |
- dm_simplecmd_noflush(DM_DEVICE_RESUME, name);
|
|
|
e41771 |
+ dm_simplecmd_noflush(DM_DEVICE_RESUME, name, MPATH_UDEV_RELOAD_FLAG);
|
|
|
e41771 |
}
|
|
|
e41771 |
r = 1;
|
|
|
e41771 |
|
|
|
e41771 |
Index: multipath-tools-130222/libmultipath/devmapper.h
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/libmultipath/devmapper.h
|
|
|
e41771 |
+++ multipath-tools-130222/libmultipath/devmapper.h
|
|
|
e41771 |
@@ -6,11 +6,17 @@
|
|
|
e41771 |
#define TGT_MPATH "multipath"
|
|
|
e41771 |
#define TGT_PART "linear"
|
|
|
e41771 |
|
|
|
e41771 |
+#ifdef DM_SUBSYSTEM_UDEV_FLAG0
|
|
|
e41771 |
+#define MPATH_UDEV_RELOAD_FLAG DM_SUBSYSTEM_UDEV_FLAG0
|
|
|
e41771 |
+#else
|
|
|
e41771 |
+#define MPATH_UDEV_RELOAD_FLAG 0
|
|
|
e41771 |
+#endif
|
|
|
e41771 |
+
|
|
|
e41771 |
void dm_init(void);
|
|
|
e41771 |
int dm_prereq (void);
|
|
|
e41771 |
int dm_drv_version (unsigned int * version, char * str);
|
|
|
e41771 |
-int dm_simplecmd_flush (int, const char *, int);
|
|
|
e41771 |
-int dm_simplecmd_noflush (int, const char *);
|
|
|
e41771 |
+int dm_simplecmd_flush (int, const char *, int, uint16_t);
|
|
|
e41771 |
+int dm_simplecmd_noflush (int, const char *, uint16_t);
|
|
|
e41771 |
int dm_addmap_create (struct multipath *mpp, char *params);
|
|
|
e41771 |
int dm_addmap_reload (struct multipath *mpp, char *params);
|
|
|
e41771 |
int dm_map_present (const char *);
|
|
|
e41771 |
Index: multipath-tools-130222/multipathd/cli_handlers.c
|
|
|
e41771 |
===================================================================
|
|
|
e41771 |
--- multipath-tools-130222.orig/multipathd/cli_handlers.c
|
|
|
e41771 |
+++ multipath-tools-130222/multipathd/cli_handlers.c
|
|
|
e41771 |
@@ -783,7 +783,7 @@ cli_suspend(void * v, char ** reply, int
|
|
|
e41771 |
{
|
|
|
e41771 |
struct vectors * vecs = (struct vectors *)data;
|
|
|
e41771 |
char * param = get_keyparam(v, MAP);
|
|
|
e41771 |
- int r = dm_simplecmd_noflush(DM_DEVICE_SUSPEND, param);
|
|
|
e41771 |
+ int r = dm_simplecmd_noflush(DM_DEVICE_SUSPEND, param, 0);
|
|
|
e41771 |
|
|
|
e41771 |
param = convert_dev(param, 0);
|
|
|
e41771 |
condlog(2, "%s: suspend (operator)", param);
|
|
|
e41771 |
@@ -805,7 +805,7 @@ cli_resume(void * v, char ** reply, int
|
|
|
e41771 |
{
|
|
|
e41771 |
struct vectors * vecs = (struct vectors *)data;
|
|
|
e41771 |
char * param = get_keyparam(v, MAP);
|
|
|
e41771 |
- int r = dm_simplecmd_noflush(DM_DEVICE_RESUME, param);
|
|
|
e41771 |
+ int r = dm_simplecmd_noflush(DM_DEVICE_RESUME, param, 0);
|
|
|
e41771 |
|
|
|
e41771 |
param = convert_dev(param, 0);
|
|
|
e41771 |
condlog(2, "%s: resume (operator)", param);
|