diff options
author | Damjan Marion <damarion@cisco.com> | 2016-02-06 19:16:21 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-02-16 17:50:48 +0000 |
commit | ce8debfe0faaea959aed846f83a0e1ade5f5acd2 (patch) | |
tree | cda052cd0757e402e2c9f12930b2149848aa869e /vlib | |
parent | d0386374d6759a3f056a604060140acd7c66926f (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.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vlib/vlib/threads.h b/vlib/vlib/threads.h index 98f19c442e3..6c16878a5b5 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) |