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-- 872 bytes
Makefile -rw-r--r-- 317 bytes
amdtp.c -rw-r--r-- 14.9 KB
amdtp.h -rw-r--r-- 4.6 KB
cmp.c -rw-r--r-- 7.2 KB
cmp.h -rw-r--r-- 1.1 KB
fcp.c -rw-r--r-- 6.0 KB
fcp.h -rw-r--r-- 327 bytes
isight.c -rw-r--r-- 18.0 KB
iso-resources.c -rw-r--r-- 6.5 KB
iso-resources.h -rw-r--r-- 1.2 KB
lib.c -rw-r--r-- 2.3 KB
lib.h -rw-r--r-- 514 bytes
packets-buffer.c -rw-r--r-- 2.1 KB
packets-buffer.h -rw-r--r-- 747 bytes
speakers.c -rw-r--r-- 20.2 KB

back to top