From c3da952a0261cb2fa381154a6f22b758a4bd843b Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 27 May 2009 11:15:08 +0100 Subject: Pass cpumasks by reference always. Rather than passing cpumasks by value in all cases (which is problematic for large NR_CPUS configurations), pass them 'by reference' (i.e. through a pointer to a const cpumask). On x86 this changes send_IPI_mask() to always only send IPIs to remote CPUs (meaning any caller needing to handle the current CPU as well has to do so on its own). Signed-off-by: Jan Beulich Signed-off-by: Keir Fraser --- xen/common/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'xen/common/Makefile') diff --git a/xen/common/Makefile b/xen/common/Makefile index 08b9e2b00e..27b13f3e34 100644 --- a/xen/common/Makefile +++ b/xen/common/Makefile @@ -1,4 +1,5 @@ obj-y += bitmap.o +obj-y += cpu.o obj-y += domctl.o obj-y += domain.o obj-y += event_channel.o -- cgit v1.2.3