[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAL715WJx1bjm21JnGzbsre+OQQnsKZ+rXQDqNAp9NwixZ_zEow@mail.gmail.com>
Date: Sun, 19 Feb 2023 09:56:35 -0800
From: Mingwei Zhang <mizhang@...gle.com>
To: Chao Gao <chao.gao@...el.com>
Cc: Sean Christopherson <seanjc@...gle.com>,
Paolo Bonzini <pbonzini@...hat.com>, kvm@...r.kernel.org,
linux-kselftest@...r.kernel.org, linux-kernel@...r.kernel.org,
Jim Mattson <jmattson@...gle.com>,
Venkatesh Srinivas <venkateshs@...gle.com>,
Aaron Lewis <aaronlewis@...gle.com>,
"Chang S. Bae" <chang.seok.bae@...el.com>
Subject: Re: [PATCH v2 1/7] KVM: selftests: x86: Add a working xstate data structure
On Sun, Feb 19, 2023 at 12:33 AM Chao Gao <chao.gao@...el.com> wrote:
>
> On Tue, Feb 14, 2023 at 06:46:00PM +0000, Mingwei Zhang wrote:
> >- /* xsave data for guest_code */
> >- xsavedata = vm_vaddr_alloc_pages(vm, 3);
> >- memset(addr_gva2hva(vm, xsavedata), 0, 3 * getpagesize());
> >- vcpu_args_set(vcpu, 3, amx_cfg, tiledata, xsavedata);
> >+ /* XSAVE state for guest_code */
> >+ xstate = vm_vaddr_alloc_pages(vm, DIV_ROUND_UP(XSAVE_SIZE, PAGE_SIZE));
> >+ memset(addr_gva2hva(vm, xstate), 0, DIV_ROUND_UP(XSAVE_SIZE, PAGE_SIZE));
>
> ^ this should be the size in bytes instead of in pages. Right?
Right, thanks for catching that. I will fix it in the next version.
Powered by blists - more mailing lists