vlib: remove unused code

Type: improvement
Change-Id: I2c54cb3eb41ed35f114eca75fb6e2be3eb3f4ca1
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2024-01-12 17:50:55 +00:00
committed by Andrew Yourtchenko
parent 7e9513b8fc
commit 1cfac4e6e4

View File

@ -45,22 +45,6 @@ typedef struct vlib_thread_registration_
uword *coremask;
} vlib_thread_registration_t;
/*
* Frames have their cpu / vlib_main_t index in the low-order N bits
* Make VLIB_MAX_CPUS a power-of-two, please...
*/
#ifndef VLIB_MAX_CPUS
#define VLIB_MAX_CPUS 256
#endif
#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)
#define VLIB_LOG2_THREAD_STACK_SIZE (21)
#define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)