Revision 251da03897b383904901620835044e298061875f authored by Michael Neuling on 10 November 2011, 16:03:20 UTC, committed by Avi Kivity on 26 December 2011, 11:28:02 UTC
Currently kvmppc_start_thread() tries to wake other SMT threads via
xics_wake_cpu().  Unfortunately xics_wake_cpu only exists when
CONFIG_SMP=Y so when compiling with CONFIG_SMP=N we get:

  arch/powerpc/kvm/built-in.o: In function `.kvmppc_start_thread':
  book3s_hv.c:(.text+0xa1e0): undefined reference to `.xics_wake_cpu'

The following should be fine since kvmppc_start_thread() shouldn't
called to start non-zero threads when SMP=N since threads_per_core=1.

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
1 parent 96f38d7
History
File Mode Size
Kconfig -rw-r--r-- 867 bytes
Makefile -rw-r--r-- 423 bytes
aaci.c -rw-r--r-- 25.2 KB
aaci.h -rw-r--r-- 6.9 KB
pxa2xx-ac97-lib.c -rw-r--r-- 8.3 KB
pxa2xx-ac97.c -rw-r--r-- 6.5 KB
pxa2xx-pcm-lib.c -rw-r--r-- 7.3 KB
pxa2xx-pcm.c -rw-r--r-- 3.1 KB
pxa2xx-pcm.h -rw-r--r-- 899 bytes

back to top