In the pgpolicy functions, if an error is encountered after
alloc_pathgroup() is called, but before the path group is added to a
multipath device with add_pathgroup(), the pathgroup needs to be cleaned
up by calling free_pathgroup(). However, after the pathgroup has been
added to the multipath device, calling free_pgvec() will clean it up. In
this case, if free_pathgroup() is called first, the recently added
pathgroup will be freed twice.

Signed-off-by: Benjamin Marzinski <bmarz...@redhat.com>
---
 libmultipath/pgpolicies.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/libmultipath/pgpolicies.c b/libmultipath/pgpolicies.c
index 21d4f122..d447c46e 100644
--- a/libmultipath/pgpolicies.c
+++ b/libmultipath/pgpolicies.c
@@ -139,7 +139,7 @@ int group_by_node_name(struct multipath * mp)
 
                /* feed the first path */
                if (store_path(pgp->paths, pp))
-                       goto out2;
+                       goto out1;
 
                bitmap[i] = 1;
 
@@ -153,7 +153,7 @@ int group_by_node_name(struct multipath * mp)
                        if (!strncmp(pp->tgt_node_name, pp2->tgt_node_name,
                                        NODE_NAME_SIZE)) {
                                if (store_path(pgp->paths, pp2))
-                                       goto out2;
+                                       goto out1;
 
                                bitmap[j] = 1;
                        }
@@ -206,7 +206,7 @@ int group_by_serial(struct multipath * mp)
 
                /* feed the first path */
                if (store_path(pgp->paths, pp))
-                       goto out2;
+                       goto out1;
 
                bitmap[i] = 1;
 
@@ -219,7 +219,7 @@ int group_by_serial(struct multipath * mp)
 
                        if (0 == strcmp(pp->serial, pp2->serial)) {
                                if (store_path(pgp->paths, pp2))
-                                       goto out2;
+                                       goto out1;
 
                                bitmap[j] = 1;
                        }
@@ -254,7 +254,7 @@ int one_path_per_group(struct multipath *mp)
                        goto out1;
 
                if (store_path(pgp->paths, pp))
-                       goto out1;
+                       goto out;
        }
        return 0;
 out1:
@@ -358,7 +358,7 @@ int group_by_prio(struct multipath *mp)
                vector_foreach_slot(pathvec, pp, i) {
                        if (pp->priority == prio) {
                                if (store_path(pgp->paths, pp))
-                                       goto out2;
+                                       goto out1;
 
                                vector_del_slot(pathvec, i);
                                i--;
-- 
2.17.2

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to