From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoffer Dall Subject: Re: [PATCH] arm64: KVM: export current vcpu->pause state via pseudo regs Date: Mon, 4 Aug 2014 14:13:17 +0200 Message-ID: <20140804121317.GD524@cbox> References: <1404914112-7298-1-git-send-email-alex.bennee@linaro.org> <20140731143538.GI11610@cbox> <87mwbpimgz.fsf@linaro.org> <20140731163805.GK11610@cbox> <87fvhgin6s.fsf@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org, kvm@vger.kernel.org, Marc Zyngier , Catalin Marinas , Will Deacon , Gleb Natapov , Paolo Bonzini , open list To: Alex =?iso-8859-1?Q?Benn=E9e?= Return-path: Content-Disposition: inline In-Reply-To: <87fvhgin6s.fsf@linaro.org> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On Fri, Aug 01, 2014 at 10:11:52AM +0100, Alex Benn=E9e wrote: >=20 > Christoffer Dall writes: >=20 > > On Thu, Jul 31, 2014 at 04:14:51PM +0100, Alex Benn=E9e wrote: > >>=20 > >> Christoffer Dall writes: > >>=20 > >> > On Wed, Jul 09, 2014 at 02:55:12PM +0100, Alex Benn=E9e wrote: > >> >> To cleanly restore an SMP VM we need to ensure that the current= pause > >> >> state of each vcpu is correctly recorded. Things could get conf= used if > >> >> the CPU starts running after migration restore completes when i= t was > >> >> paused before it state was captured. > >> >>=20 > >> > >> >> +/* Power state (PSCI), not real registers */ > >> >> +#define KVM_REG_ARM_PSCI (0x0014 << KVM_REG_ARM_COPROC_SHIFT) > >> >> +#define KVM_REG_ARM_PSCI_REG(n) \ > >> >> + (KVM_REG_ARM64 | KVM_REG_SIZE_U64 | KVM_REG_ARM_PSCI | \ > >> >> + (n & ~KVM_REG_ARM_COPROC_MASK)) > >> > > >> > I don't understand this mask, why isn't this > >> > (n & 0xffff)) > >>=20 > >> I was trying to use the existing masks, but of course if anyone ch= anges > >> that it would be an ABI change so probably not worth it. > >>=20 > > > > the KVM_REG_ARM_COPROC_MASK is part of the uapi IIRC, so that's not= the > > issue, but that mask doesn't cover all the upper bits, so it feels = weird > > to use that to me. >=20 > Yeah I missed that. I could do a: >=20 > #define KVM_REG_ARM_COPROC_INDEX_MASK ((1<=20 > and use that. I'm generally try to avoid hardcoded numbers but I coul= d > be being a little OCD here ;-) >=20 > >> > Can you add the 32-bit counterpart as part of this patch? > >>=20 > >> Same patch? Sure. > > > > really up to you if you want to split it up into two patches, but I > > think it's small enough that you can just create one patch. >=20 > Given the similarity of this code between arm and arm64 I'm wondering= if > it's worth doing a arch/arm/kvm/guest_common.c or something to reduce > the amount of copy paste stuff? >=20 We've gotten by without it so far. I fear we end up with a bunch of complications due to differences in sizeof(unsigned long) etc., but I may be wrong. The amount of code that is copied should be trivial boilerplate stuff, but if you think it's worth unifying, then I'd be happy to review the patch. Thanks, -Christoffer