From mboxrd@z Thu Jan 1 00:00:00 1970 From: lixiaokeng Subject: [PATCH 12/14] libmultipathpersist: use update_multipath_table/status, in get_mpvec Date: Wed, 2 Sep 2020 15:24:33 +0800 Message-ID: <5beca982-98a1-e48b-f86f-95810bc3c49c@huawei.com> References: <37544d4c-950f-4281-3b66-e4d1884c5167@huawei.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <37544d4c-950f-4281-3b66-e4d1884c5167@huawei.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com Content-Language: en-GB To: Martin Wilck , Benjamin Marzinski , Christophe Varoqui , dm-devel mailing list Cc: linfeilong , "liuzhiqiang (I)" List-Id: dm-devel.ids The return values of dm_get_map, disassemble_map in get_mpvec were not checked. Use update_multipath_table/status to instead of them. Signed-off-by: Lixiaokeng Signed-off-by: Zhiqiang Liu Signed-off-by: Linfeilong --- libmpathpersist/mpath_persist.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/libmpathpersist/mpath_persist.c b/libmpathpersist/mpath_persist.c index e7256049..046fda21 100644 --- a/libmpathpersist/mpath_persist.c +++ b/libmpathpersist/mpath_persist.c @@ -323,7 +323,6 @@ get_mpvec (vector curmp, vector pathvec, char * refwwid) { int i; struct multipath *mpp; - char params[PARAMS_SIZE], status[PARAMS_SIZE]; vector_foreach_slot (curmp, mpp, i){ /* @@ -341,13 +340,9 @@ get_mpvec (vector curmp, vector pathvec, char * refwwid) if (refwwid && strncmp (mpp->alias, refwwid, WWID_SIZE - 1)) continue; - dm_get_map(mpp->alias, &mpp->size, params); - condlog(3, "params = %s", params); - dm_get_status(mpp->alias, status); - condlog(3, "status = %s", status); - disassemble_map (pathvec, params, mpp); - update_pathvec_from_dm(pathvec, mpp, DI_CHECKER); - disassemble_status (status, mpp); + if (update_multipath_table(mpp, pathvec, DI_CHECKER) != DMP_OK || + update_multipath_status(mpp) != DMP_OK) + continue; } return MPATH_PR_SUCCESS ; --