lkml.org 
[lkml]   [2023]   [Jan]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v11 079/113] KVM: TDX: Implements vcpu request_immediate_exit
    Date
    From: Isaku Yamahata <isaku.yamahata@intel.com>

    Now we are able to inject interrupts into TDX vcpu, it's ready to block TDX
    vcpu. Wire up kvm x86 methods for blocking/unblocking vcpu for TDX. To
    unblock on pending events, request immediate exit methods is also needed.

    Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com>
    Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
    ---
    arch/x86/kvm/vmx/main.c | 10 +++++++++-
    1 file changed, 9 insertions(+), 1 deletion(-)

    diff --git a/arch/x86/kvm/vmx/main.c b/arch/x86/kvm/vmx/main.c
    index d5a838e87fb5..7962f03e222d 100644
    --- a/arch/x86/kvm/vmx/main.c
    +++ b/arch/x86/kvm/vmx/main.c
    @@ -307,6 +307,14 @@ static void vt_enable_irq_window(struct kvm_vcpu *vcpu)
    vmx_enable_irq_window(vcpu);
    }

    +static void vt_request_immediate_exit(struct kvm_vcpu *vcpu)
    +{
    + if (is_td_vcpu(vcpu))
    + return __kvm_request_immediate_exit(vcpu);
    +
    + vmx_request_immediate_exit(vcpu);
    +}
    +
    static u8 vt_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
    {
    if (is_td_vcpu(vcpu))
    @@ -443,7 +451,7 @@ struct kvm_x86_ops vt_x86_ops __initdata = {
    .check_intercept = vmx_check_intercept,
    .handle_exit_irqoff = vmx_handle_exit_irqoff,

    - .request_immediate_exit = vmx_request_immediate_exit,
    + .request_immediate_exit = vt_request_immediate_exit,

    .sched_in = vt_sched_in,

    --
    2.25.1
    \
     
     \ /
      Last update: 2023-03-26 23:38    [W:2.669 / U:0.512 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site