From: Paolo Bonzini <pbonzini@redhat.com>
To: Colin Xu <colin.xu@intel.com>, philmd@redhat.com
Cc: bowen.wang@intel.com, qemu-devel@nongnu.org, wenchao.wang@intel.com
Subject: Re: [PATCH V2] hax: Dynamic allocate vcpu state structure
Date: Thu, 21 May 2020 17:10:34 +0200 [thread overview]
Message-ID: <81aacddd-d046-a6f5-0e5e-f5034cb183b7@redhat.com> (raw)
In-Reply-To: <20200509035952.187615-1-colin.xu@intel.com>
On 09/05/20 05:59, Colin Xu wrote:
> From: WangBowen <bowen.wang@intel.com>
>
> Dynamic allocating vcpu state structure according to smp value to be
> more precise and safe. Previously it will alloccate array of fixed size
> HAX_MAX_VCPU.
>
> This is achieved by using g_new0 to dynamic allocate the array. The
> allocated size is obtained from smp.max_cpus in MachineState. Also, the
> size is compared with HAX_MAX_VCPU when creating the vm. The reason for
> choosing dynamic array over linked list is because the status is visited
> by index all the time.
>
> This will lead to QEMU checking whether the smp value is larger than the
> HAX_MAX_VCPU when creating vm, if larger, the process will terminate,
> otherwise it will allocate array of size smp to store the status.
>
> V2: Check max_cpus before open vm. (Philippe)
>
> Signed-off-by: WangBowen <bowen.wang@intel.com>
> Signed-off-by: Colin Xu <colin.xu@intel.com>
> ---
> target/i386/hax-all.c | 25 +++++++++++++++++++------
> target/i386/hax-i386.h | 5 +++--
> 2 files changed, 22 insertions(+), 8 deletions(-)
>
> diff --git a/target/i386/hax-all.c b/target/i386/hax-all.c
> index f9c83fff2547..c93bb23a446a 100644
> --- a/target/i386/hax-all.c
> +++ b/target/i386/hax-all.c
> @@ -232,10 +232,10 @@ int hax_init_vcpu(CPUState *cpu)
> return ret;
> }
>
> -struct hax_vm *hax_vm_create(struct hax_state *hax)
> +struct hax_vm *hax_vm_create(struct hax_state *hax, int max_cpus)
> {
> struct hax_vm *vm;
> - int vm_id = 0, ret;
> + int vm_id = 0, ret, i;
>
> if (hax_invalid_fd(hax->fd)) {
> return NULL;
> @@ -245,6 +245,11 @@ struct hax_vm *hax_vm_create(struct hax_state *hax)
> return hax->vm;
> }
>
> + if (max_cpus > HAX_MAX_VCPU) {
> + fprintf(stderr, "Maximum VCPU number QEMU supported is %d\n", HAX_MAX_VCPU);
> + return NULL;
> + }
> +
> vm = g_new0(struct hax_vm, 1);
>
> ret = hax_host_create_vm(hax, &vm_id);
> @@ -259,6 +264,12 @@ struct hax_vm *hax_vm_create(struct hax_state *hax)
> goto error;
> }
>
> + vm->numvcpus = max_cpus;
> + vm->vcpus = g_new0(struct hax_vcpu_state *, vm->numvcpus);
> + for (i = 0; i < vm->numvcpus; i++) {
> + vm->vcpus[i] = NULL;
> + }
> +
> hax->vm = vm;
> return vm;
>
> @@ -272,12 +283,14 @@ int hax_vm_destroy(struct hax_vm *vm)
> {
> int i;
>
> - for (i = 0; i < HAX_MAX_VCPU; i++)
> + for (i = 0; i < vm->numvcpus; i++)
> if (vm->vcpus[i]) {
> fprintf(stderr, "VCPU should be cleaned before vm clean\n");
> return -1;
> }
> hax_close_fd(vm->fd);
> + vm->numvcpus = 0;
> + g_free(vm->vcpus);
> g_free(vm);
> hax_global.vm = NULL;
> return 0;
> @@ -292,7 +305,7 @@ static void hax_handle_interrupt(CPUState *cpu, int mask)
> }
> }
>
> -static int hax_init(ram_addr_t ram_size)
> +static int hax_init(ram_addr_t ram_size, int max_cpus)
> {
> struct hax_state *hax = NULL;
> struct hax_qemu_version qversion;
> @@ -324,7 +337,7 @@ static int hax_init(ram_addr_t ram_size)
> goto error;
> }
>
> - hax->vm = hax_vm_create(hax);
> + hax->vm = hax_vm_create(hax, max_cpus);
> if (!hax->vm) {
> fprintf(stderr, "Failed to create HAX VM\n");
> ret = -EINVAL;
> @@ -352,7 +365,7 @@ static int hax_init(ram_addr_t ram_size)
>
> static int hax_accel_init(MachineState *ms)
> {
> - int ret = hax_init(ms->ram_size);
> + int ret = hax_init(ms->ram_size, (int)ms->smp.max_cpus);
>
> if (ret && (ret != -ENOSPC)) {
> fprintf(stderr, "No accelerator found.\n");
> diff --git a/target/i386/hax-i386.h b/target/i386/hax-i386.h
> index 54e9d8b057f3..7d988f81da05 100644
> --- a/target/i386/hax-i386.h
> +++ b/target/i386/hax-i386.h
> @@ -47,7 +47,8 @@ struct hax_state {
> struct hax_vm {
> hax_fd fd;
> int id;
> - struct hax_vcpu_state *vcpus[HAX_MAX_VCPU];
> + int numvcpus;
> + struct hax_vcpu_state **vcpus;
> };
>
> #ifdef NEED_CPU_H
> @@ -58,7 +59,7 @@ int valid_hax_tunnel_size(uint16_t size);
> /* Host specific functions */
> int hax_mod_version(struct hax_state *hax, struct hax_module_version *version);
> int hax_inject_interrupt(CPUArchState *env, int vector);
> -struct hax_vm *hax_vm_create(struct hax_state *hax);
> +struct hax_vm *hax_vm_create(struct hax_state *hax, int max_cpus);
> int hax_vcpu_run(struct hax_vcpu_state *vcpu);
> int hax_vcpu_create(int id);
> int hax_sync_vcpu_state(CPUArchState *env, struct vcpu_state_t *state,
>
Queued, thanks.
Paolo
prev parent reply other threads:[~2020-05-21 15:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-09 3:59 [PATCH V2] hax: Dynamic allocate vcpu state structure Colin Xu
2020-05-09 4:04 ` Colin Xu
2020-05-21 15:10 ` Paolo Bonzini [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=81aacddd-d046-a6f5-0e5e-f5034cb183b7@redhat.com \
--to=pbonzini@redhat.com \
--cc=bowen.wang@intel.com \
--cc=colin.xu@intel.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=wenchao.wang@intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).