Re: [Xen-devel] [PATCH 1/3] xen/pv-on-hvm kexec: add quirk for Xen3.4 and shutdown watches.

From: Ian Campbell
Date: Mon Oct 15 2012 - 12:14:13 EST


On Mon, 2012-10-15 at 17:05 +0100, Ian Campbell wrote:
>
> > +static bool xen_strict_xenbus_quirk()
> > +{
> > + uint32_t eax, ebx, ecx, edx, base;
> > +
> > + base = xen_cpuid_base();
> > + cpuid(base + 1, &eax, &ebx, &ecx, &edx);
>
> This breaks on ARM because this is an x86 specific function. Can we
> ifdef it or properly wrap it in an arch interface please.

Quick-n-dirty fix.

8<----------------------------