[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAJve8ok7xny2f+J_O0SFZRAiKGMinM9C1YK=OXVpABem=KttnQ@mail.gmail.com>
Date: Wed, 6 Sep 2023 10:15:23 +0800
From: Haibo Xu <xiaobo55x@...il.com>
To: Andrew Jones <ajones@...tanamicro.com>
Cc: Haibo Xu <haibo1.xu@...el.com>,
Sean Christopherson <seanjc@...gle.com>,
Paul Walmsley <paul.walmsley@...ive.com>,
Palmer Dabbelt <palmer@...belt.com>,
Albert Ou <aou@...s.berkeley.edu>,
Paolo Bonzini <pbonzini@...hat.com>,
Shuah Khan <shuah@...nel.org>, Marc Zyngier <maz@...nel.org>,
Oliver Upton <oliver.upton@...ux.dev>,
James Morse <james.morse@....com>,
Suzuki K Poulose <suzuki.poulose@....com>,
Zenghui Yu <yuzenghui@...wei.com>,
Anup Patel <anup@...infault.org>,
Atish Patra <atishp@...shpatra.org>,
Guo Ren <guoren@...nel.org>,
Greentime Hu <greentime.hu@...ive.com>,
wchen <waylingii@...il.com>,
Daniel Henrique Barboza <dbarboza@...tanamicro.com>,
Ricardo Koller <ricarkol@...gle.com>,
Vishal Annapurve <vannapurve@...gle.com>,
David Matlack <dmatlack@...gle.com>,
Aaron Lewis <aaronlewis@...gle.com>,
Mingwei Zhang <mizhang@...gle.com>,
Vitaly Kuznetsov <vkuznets@...hat.com>,
Ackerley Tng <ackerleytng@...gle.com>,
Lei Wang <lei4.wang@...el.com>,
Vipin Sharma <vipinsh@...gle.com>,
Maxim Levitsky <mlevitsk@...hat.com>,
Like Xu <likexu@...cent.com>, Peter Gonda <pgonda@...gle.com>,
Thomas Huth <thuth@...hat.com>,
Philippe Mathieu-Daudé <philmd@...aro.org>,
David Woodhouse <dwmw@...zon.co.uk>,
Michal Luczaj <mhal@...x.co>,
zhang songyi <zhang.songyi@....com.cn>,
linux-kernel@...r.kernel.org, linux-riscv@...ts.infradead.org,
kvm@...r.kernel.org, linux-kselftest@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, kvmarm@...ts.linux.dev,
kvm-riscv@...ts.infradead.org
Subject: Re: [PATCH v2 1/8] KVM: selftests: Unify the codes for guest
exception handling
On Mon, Sep 4, 2023 at 7:16 PM Andrew Jones <ajones@...tanamicro.com> wrote:
>
> On Sat, Sep 02, 2023 at 08:59:23PM +0800, Haibo Xu wrote:
> > Rename the vm_init_descriptor_tables() and vcpu_init_vector_tables()
> ^ vcpu_init_descriptor_tables()
>
> > prototypes to vm_init_vector_tables() and vcpu_init_vector_tables()
> > respectively, so that we can use common names for the architectures
> > (x86/aarch64/riscv) and then put them in a common header.
> >
> > By the way, vm_install_exception_handler() prototype were also moved to
> > the common header since they are commonly used across the architectures.
> >
> > The patch is a preparation to share the guest exception handling codes
> > in riscv.
> >
> > Suggested-by: Andrew Jones <ajones@...tanamicro.com>
> > Suggested-by: Sean Christopherson <seanjc@...gle.com>
> > Signed-off-by: Haibo Xu <haibo1.xu@...el.com>
> > ---
> > tools/testing/selftests/kvm/aarch64/arch_timer.c | 4 ++--
> > tools/testing/selftests/kvm/aarch64/debug-exceptions.c | 4 ++--
> > tools/testing/selftests/kvm/aarch64/page_fault_test.c | 4 ++--
> > tools/testing/selftests/kvm/aarch64/vgic_irq.c | 4 ++--
> > tools/testing/selftests/kvm/include/aarch64/processor.h | 8 +-------
> > tools/testing/selftests/kvm/include/kvm_util_base.h | 7 +++++++
> > tools/testing/selftests/kvm/include/x86_64/processor.h | 5 -----
> > tools/testing/selftests/kvm/lib/aarch64/processor.c | 6 +++---
> > tools/testing/selftests/kvm/lib/x86_64/processor.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/amx_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/fix_hypercall_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/hyperv_evmcs.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/hyperv_features.c | 8 ++++----
> > tools/testing/selftests/kvm/x86_64/hyperv_ipi.c | 6 +++---
> > tools/testing/selftests/kvm/x86_64/kvm_pv_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/monitor_mwait_test.c | 4 ++--
> > .../testing/selftests/kvm/x86_64/pmu_event_filter_test.c | 8 ++++----
> > .../kvm/x86_64/smaller_maxphyaddr_emulation_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/svm_int_ctl_test.c | 4 ++--
> > .../selftests/kvm/x86_64/svm_nested_shutdown_test.c | 4 ++--
> > .../selftests/kvm/x86_64/svm_nested_soft_inject_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/ucna_injection_test.c | 8 ++++----
> > .../selftests/kvm/x86_64/userspace_msr_exit_test.c | 4 ++--
> > .../kvm/x86_64/vmx_exception_with_invalid_guest_state.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/vmx_pmu_caps_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/xapic_ipi_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/xcr0_cpuid_test.c | 4 ++--
> > tools/testing/selftests/kvm/x86_64/xen_shinfo_test.c | 4 ++--
> > 28 files changed, 66 insertions(+), 70 deletions(-)
> >
>
> Reviewed-by: Andrew Jones <ajones@...tanamicro.com>
Thanks for the review!
Powered by blists - more mailing lists