public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Sean Christopherson <seanjc@google.com>
To: David Dunn <daviddunn@google.com>
Cc: pbonzini@redhat.com, jmattson@google.com,
	like.xu.linux@gmail.com, kvm@vger.kernel.org
Subject: Re: [PATCH v7 2/3] KVM: selftests: Carve out helper to create "default" VM without vCPUs
Date: Thu, 17 Feb 2022 15:46:26 +0000	[thread overview]
Message-ID: <Yg5t0lnc/oAHmFrB@google.com> (raw)
In-Reply-To: <20220215014806.4102669-3-daviddunn@google.com>

On Tue, Feb 15, 2022, David Dunn wrote:
> Carve out portion of vm_create_default so that selftests can modify
> a "default" VM prior to creating vcpus.
> 
> Signed-off-by: David Dunn <daviddunn@google.com>
> ---
>  .../selftests/kvm/include/kvm_util_base.h     |  3 ++
>  tools/testing/selftests/kvm/lib/kvm_util.c    | 35 +++++++++++++++----
>  2 files changed, 32 insertions(+), 6 deletions(-)
> 
> diff --git a/tools/testing/selftests/kvm/include/kvm_util_base.h b/tools/testing/selftests/kvm/include/kvm_util_base.h
> index 4ed6aa049a91..f987cf7c0d2e 100644
> --- a/tools/testing/selftests/kvm/include/kvm_util_base.h
> +++ b/tools/testing/selftests/kvm/include/kvm_util_base.h
> @@ -336,6 +336,9 @@ struct kvm_vm *vm_create_with_vcpus(enum vm_guest_mode mode, uint32_t nr_vcpus,
>  				    uint32_t num_percpu_pages, void *guest_code,
>  				    uint32_t vcpuids[]);
>  
> +/* Create a default VM without any vcpus. */
> +struct kvm_vm *vm_create_without_vcpus(enum vm_guest_mode mode, uint64_t pages);
> +
>  /*
>   * Adds a vCPU with reasonable defaults (e.g. a stack)
>   *
> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
> index d8cf851ab119..5aea7734cfe3 100644
> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
> @@ -362,6 +362,34 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
>  	return vm;
>  }
>  
> +/*
> + * Default VM creation without creating VCPUs
> + *
> + * Input Args:
> + *   mode - VM Mode (e.g. VM_MODE_P52V48_4K)
> + *   pages - pages of memory required for VM
> + *
> + * Output Args: None
> + *
> + * Return:
> + *   Pointer to opaque structure that describes the created VM.
> + *
> + * Creates a VM with the mode specified by mode (e.g. VM_MODE_P52V48_4K).
> + */

I vote to omit this function comment.  Most of the existing comments in kvm_util.c
are a waste of space, and (no offence) this is no different.  And I'm planning on
deleting most of the existing boilerplate comments that don't provide any insight :-)

> +struct kvm_vm *vm_create_without_vcpus(enum vm_guest_mode mode, uint64_t pages)
> +{
> +	struct kvm_vm *vm;
> +
> +	vm = vm_create(mode, pages, O_RDWR);
> +
> +	kvm_vm_elf_load(vm, program_invocation_name);
> +
> +#ifdef __x86_64__
> +	vm_create_irqchip(vm);
> +#endif
> +	return vm;
> +}
> +
>  /*
>   * VM Create with customized parameters
>   *
> @@ -412,13 +440,8 @@ struct kvm_vm *vm_create_with_vcpus(enum vm_guest_mode mode, uint32_t nr_vcpus,
>  		    nr_vcpus, kvm_check_cap(KVM_CAP_MAX_VCPUS));
>  
>  	pages = vm_adjust_num_guest_pages(mode, pages);
> -	vm = vm_create(mode, pages, O_RDWR);
> -
> -	kvm_vm_elf_load(vm, program_invocation_name);
>  
> -#ifdef __x86_64__
> -	vm_create_irqchip(vm);
> -#endif
> +	vm = vm_create_without_vcpus(mode, pages);
>  
>  	for (i = 0; i < nr_vcpus; ++i) {
>  		uint32_t vcpuid = vcpuids ? vcpuids[i] : i;
> -- 
> 2.35.1.265.g69c8d7142f-goog
> 

  reply	other threads:[~2022-02-17 15:46 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-15  1:48 [PATCH v7 0/3] KVM: x86: Provide per VM capability for disabling PMU virtualization David Dunn
2022-02-15  1:48 ` [PATCH v7 1/3] " David Dunn
2022-02-17 16:22   ` Sean Christopherson
2022-02-15  1:48 ` [PATCH v7 2/3] KVM: selftests: Carve out helper to create "default" VM without vCPUs David Dunn
2022-02-17 15:46   ` Sean Christopherson [this message]
2022-02-15  1:48 ` [PATCH v7 3/3] KVM: selftests: Verify disabling PMU virtualization via KVM_CAP_CONFIG_PMU David Dunn

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=Yg5t0lnc/oAHmFrB@google.com \
    --to=seanjc@google.com \
    --cc=daviddunn@google.com \
    --cc=jmattson@google.com \
    --cc=kvm@vger.kernel.org \
    --cc=like.xu.linux@gmail.com \
    --cc=pbonzini@redhat.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