Re: [PATCH 18/25] KVM: TDX: Do TDX specific vcpu initialization
From: Edgecombe, Rick P
Date: Wed Aug 28 2024 - 10:34:41 EST
On Mon, 2024-08-12 at 15:48 -0700, Rick Edgecombe wrote:
> +static inline bool is_td_vcpu_created(struct vcpu_tdx *tdx)
> +{
> + return tdx->td_vcpu_created;
> +}
This and is_td_finalized() seem like unneeded helpers. The field name is clear
enough.
> +
> static inline bool is_td_created(struct kvm_tdx *kvm_tdx)
> {
> return kvm_tdx->tdr_pa;
Not this one though, the helper makes the caller code clearer.
> @@ -105,6 +110,11 @@ static inline bool is_hkid_assigned(struct kvm_tdx
> *kvm_tdx)
> return kvm_tdx->hkid > 0;
> }
>
> +static inline bool is_td_finalized(struct kvm_tdx *kvm_tdx)
> +{
> + return kvm_tdx->finalized;
> +}
> +