[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl: call libxl_cpupoolinfo_{init, dispose} in numa_place_domain
commit deda96fb66a6a3db97a0f99e8c90aacc3c4e6135 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Fri Jul 17 18:01:08 2015 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Tue Jul 21 15:14:06 2015 +0100 libxl: call libxl_cpupoolinfo_{init, dispose} in numa_place_domain Call libxl_cpupoolinfo_init at the beginning. Change two returns to goto out so that libxl_cpupoolinfo_dispose is called in failure path. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- tools/libxl/libxl_dom.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c index 601d5cc..edd7f3f 100644 --- a/tools/libxl/libxl_dom.c +++ b/tools/libxl/libxl_dom.c @@ -142,6 +142,7 @@ static int numa_place_domain(libxl__gc *gc, uint32_t domid, libxl__numa_candidate_init(&candidate); libxl_bitmap_init(&cpupool_nodemap); + libxl_cpupoolinfo_init(&cpupool_info); /* * Extract the cpumap from the cpupool the domain belong to. In fact, @@ -150,10 +151,10 @@ static int numa_place_domain(libxl__gc *gc, uint32_t domid, */ rc = cpupool = libxl__domain_cpupool(gc, domid); if (rc < 0) - return rc; + goto out; rc = libxl_cpupool_info(CTX, &cpupool_info, cpupool); if (rc) - return rc; + goto out; rc = libxl_domain_need_memory(CTX, info, &memkb); if (rc) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |