All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ian Campbell <ian.campbell@citrix.com>
To: Dario Faggioli <dario.faggioli@citrix.com>,
	xen-devel@lists.xenproject.org
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
	Wei Liu <wei.liu2@citrix.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>,
	Harmandeep Kaur <write.harmandeep@gmail.com>
Subject: Re: [PATCH] xl: avoid (another) uninitialised use of rc in vcpuset()
Date: Wed, 4 Nov 2015 15:28:33 +0000	[thread overview]
Message-ID: <1446650913.6461.113.camel@citrix.com> (raw)
In-Reply-To: <20151104120331.29313.40737.stgit@Solace.station>

On Wed, 2015-11-04 at 13:03 +0100, Dario Faggioli wrote:
> Rearange the case when we check the new number of vCPUs
> against the number of host pCPUs not to use rc for internal
> error reporting. In fact:
>  - rc was at risk of being used uninitialised;
>  - rc should only be used for holding libxl error codes.
> 
> Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>

acked + applied.

> ---
> Cc: Ian Campbell <ian.campbell@citrix.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> Cc: Wei Liu <wei.liu2@citrix.com>
> Cc: Harmandeep Kaur <write.harmandeep@gmail.com>
> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> ---
>  tools/libxl/xl_cmdimpl.c |   12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
> index 9b6b42c..78048a1 100644
> --- a/tools/libxl/xl_cmdimpl.c
> +++ b/tools/libxl/xl_cmdimpl.c
> @@ -5457,21 +5457,21 @@ static int vcpuset(uint32_t domid, const char*
> nr_vcpus, int check_host)
>       * by the host's amount of pCPUs.
>       */
>      if (check_host) {
> -        unsigned int host_cpu = libxl_get_max_cpus(ctx);
> +        unsigned int online_vcpus, host_cpu = libxl_get_max_cpus(ctx);
>          libxl_dominfo dominfo;
>  
>          if (libxl_domain_info(ctx, &dominfo, domid))
>              return 1;
>  
> -        if (max_vcpus > dominfo.vcpu_online && max_vcpus > host_cpu) {
> +        online_vcpus = dominfo.vcpu_online;
> +        libxl_dominfo_dispose(&dominfo);
> +
> +        if (max_vcpus > online_vcpus && max_vcpus > host_cpu) {
>              fprintf(stderr, "You are overcommmitting! You have %d
> physical" \
>                      " CPUs and want %d vCPUs! Aborting, use --ignore-
> host to" \
>                      " continue\n", host_cpu, max_vcpus);
> -            rc = 1;
> -        }
> -        libxl_dominfo_dispose(&dominfo);
> -        if (rc)
>              return 1;
> +        }
>      }
>      rc = libxl_cpu_bitmap_alloc(ctx, &cpumap, max_vcpus);
>      if (rc) {
> 
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

      reply	other threads:[~2015-11-04 15:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-04 12:03 [PATCH] xl: avoid (another) uninitialised use of rc in vcpuset() Dario Faggioli
2015-11-04 15:28 ` Ian Campbell [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1446650913.6461.113.camel@citrix.com \
    --to=ian.campbell@citrix.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=dario.faggioli@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=wei.liu2@citrix.com \
    --cc=write.harmandeep@gmail.com \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.