aboutsummaryrefslogtreecommitdiffstats
path: root/vlib
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2016-02-06 19:16:21 +0100
committerGerrit Code Review <gerrit@fd.io>2016-02-16 17:50:48 +0000
commitce8debfe0faaea959aed846f83a0e1ade5f5acd2 (patch)
treecda052cd0757e402e2c9f12930b2149848aa869e /vlib
parentd0386374d6759a3f056a604060140acd7c66926f (diff)
Increase number of per-cpu mheaps to 256
It also includes check to ensure that number of per-cpu mheaps is not lower than number of cpus. Change-Id: Ibc68b34dda130f922243f9ea15b03e44bbcac269 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'vlib')
-rw-r--r--vlib/vlib/threads.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vlib/vlib/threads.h b/vlib/vlib/threads.h
index 98f19c44..6c16878a 100644
--- a/vlib/vlib/threads.h
+++ b/vlib/vlib/threads.h
@@ -50,6 +50,10 @@ typedef struct vlib_thread_registration_ {
#define VLIB_MAX_CPUS 256
+#if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
+#error Please increase number of per-cpu mheaps
+#endif
+
#define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */
#define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)