target-ppc: Remove CONFIG_PSERIES dependency in kvm.c
commitc6304a4a6822f0e3e45c94b89d4e328057355683
authorDavid Gibson <david@gibson.dropbear.id.au>
Wed, 13 Mar 2013 15:53:27 +0000 (13 15:53 +0000)
committerAlexander Graf <agraf@suse.de>
Fri, 22 Mar 2013 14:28:45 +0000 (22 15:28 +0100)
tree749396974a881a1de6279e9a429ce895252ad3b2
parent89dfd6e1b3c0b31ef700203808be2a9a71947d1d
target-ppc: Remove CONFIG_PSERIES dependency in kvm.c

target-ppc/kvm.c has an #ifdef on CONFIG_PSERIES, for the handling of
KVM exits due to a PAPR hypercall from the guest.  However, since commit
e4c8b28cde12d01ada8fe869567dc5717a2dfcb7 "ppc: express FDT dependency of
pSeries and e500 boards via default-configs/", this hasn't worked properly.
That patch altered the configuration setup so that although CONFIG_PSERIES
is visible from the Makefiles, it is not visible from C files.  This broke
the pseries machine when KVM is in use.

This patch makes a quick and dirty fix, by removing the CONFIG_PSERIES
dependency, replacing it with TARGET_PPC64 (since removing it entirely
leads to type mismatch errors).  Technically this breaks the build when
configured with --disable-fdt, since that disables CONFIG_PSERIES on
TARGET_PPC64.  However, it turns out the build was already broken in that
case, so this fixes pseries kvm without breaking anything extra.  I'm
looking into how to fix that build breakage, but I don't think that need
delay applying this patch.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
target-ppc/kvm.c