aboutsummaryrefslogtreecommitdiff
path: root/include/sysemu/sysemu.h
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2016-11-18 12:02:54 +0100
committerEduardo Habkost <ehabkost@redhat.com>2017-01-12 15:51:36 -0200
commitcdda2018e3b9ce0c18938767dfdb1e05a05b67ca (patch)
treec63be6fa7675181574676569d5fc21a88069d115 /include/sysemu/sysemu.h
parent410e98146ffde201ab4c778823ac8beaa74c4c3f (diff)
downloadqemu-cdda2018e3b9ce0c18938767dfdb1e05a05b67ca.zip
qemu-cdda2018e3b9ce0c18938767dfdb1e05a05b67ca.tar.gz
qemu-cdda2018e3b9ce0c18938767dfdb1e05a05b67ca.tar.bz2
numa: make -numa parser dynamically allocate CPUs masks
so it won't impose an additional limits on max_cpus limits supported by different targets. It removes global MAX_CPUMASK_BITS constant and need to bump it up whenever max_cpus is being increased for a target above MAX_CPUMASK_BITS value. Use runtime max_cpus value instead to allocate sufficiently sized node_cpu bitmasks in numa parser. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Message-Id: <1479466974-249781-1-git-send-email-imammedo@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> [ehabkost: Added asserts to ensure cpu_index < max_cpus] Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/sysemu/sysemu.h')
-rw-r--r--include/sysemu/sysemu.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
index 66c6f15..cccde56 100644
--- a/include/sysemu/sysemu.h
+++ b/include/sysemu/sysemu.h
@@ -168,13 +168,6 @@ extern int mem_prealloc;
#define MAX_NODES 128
#define NUMA_NODE_UNASSIGNED MAX_NODES
-/* The following shall be true for all CPUs:
- * cpu->cpu_index < max_cpus <= MAX_CPUMASK_BITS
- *
- * Note that cpu->get_arch_id() may be larger than MAX_CPUMASK_BITS.
- */
-#define MAX_CPUMASK_BITS 288
-
#define MAX_OPTION_ROMS 16
typedef struct QEMUOptionRom {
const char *name;