* [PATCH] multipathd: use 0 for initial pg if there are no priority groups
@ 2011-04-20 21:24 Mike Snitzer
2011-04-21 4:35 ` Christophe Varoqui
0 siblings, 1 reply; 2+ messages in thread
From: Mike Snitzer @ 2011-04-20 21:24 UTC (permalink / raw)
To: christophe.varoqui; +Cc: dm-devel
dm-multipath now accommodates a DM table that doesn't have any priority
groups, see: http://git.kernel.org/linus/a490a07a67b7a37
That kernel change imposes that multipathd must pass 0 for the initial
priority group if there aren't any priority groups (currently passes 1).
There is no need to check the multipath target version to decide whether
to pass an initial_pg of 0 or 1 because until recently dm-multipath
never accommodated a DM table with no priority groups.
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
---
libmultipath/dmparser.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/libmultipath/dmparser.c b/libmultipath/dmparser.c
index 1ef3aad..0803bec 100644
--- a/libmultipath/dmparser.c
+++ b/libmultipath/dmparser.c
@@ -52,6 +52,7 @@ assemble_map (struct multipath * mp)
int i, j;
int shift, freechar;
int minio;
+ int nr_priority_groups, initial_pg_nr;
char * p;
struct pathgroup * pgp;
struct path * pp;
@@ -60,9 +61,12 @@ assemble_map (struct multipath * mp)
p = mp->params;
freechar = sizeof(mp->params);
+ nr_priority_groups = VECTOR_SIZE(mp->pg);
+ initial_pg_nr = (nr_priority_groups ? mp->bestpg : 0);
+
shift = snprintf(p, freechar, "%s %s %i %i",
mp->features, mp->hwhandler,
- VECTOR_SIZE(mp->pg), mp->bestpg);
+ nr_priority_groups, initial_pg_nr);
if (shift >= freechar) {
fprintf(stderr, "mp->params too small\n");
--
1.7.3.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] multipathd: use 0 for initial pg if there are no priority groups
2011-04-20 21:24 [PATCH] multipathd: use 0 for initial pg if there are no priority groups Mike Snitzer
@ 2011-04-21 4:35 ` Christophe Varoqui
0 siblings, 0 replies; 2+ messages in thread
From: Christophe Varoqui @ 2011-04-21 4:35 UTC (permalink / raw)
To: Mike Snitzer; +Cc: dm-devel
On mer., 2011-04-20 at 17:24 -0400, Mike Snitzer wrote:
> dm-multipath now accommodates a DM table that doesn't have any priority
> groups, see: http://git.kernel.org/linus/a490a07a67b7a37
>
> That kernel change imposes that multipathd must pass 0 for the initial
> priority group if there aren't any priority groups (currently passes 1).
>
> There is no need to check the multipath target version to decide whether
> to pass an initial_pg of 0 or 1 because until recently dm-multipath
> never accommodated a DM table with no priority groups.
>
Applied.
--
Christophe Varoqui
OpenSVC - Software to scale
http://www.opensvc.com/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-04-21 4:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-20 21:24 [PATCH] multipathd: use 0 for initial pg if there are no priority groups Mike Snitzer
2011-04-21 4:35 ` Christophe Varoqui
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.