X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvlib%2Fmain.h;h=16e4120067d68fa676bb1a0083c0df32460d83a4;hb=8855386411af888e47c60645daa1fe6081fa56e1;hp=2eec930e9b6bc0379447bfb325192ab28bf7eb69;hpb=88c062119b5e94ef19e02f007e38ee119b02218f;p=vpp.git diff --git a/src/vlib/main.h b/src/vlib/main.h index 2eec930e9b6..16e4120067d 100644 --- a/src/vlib/main.h +++ b/src/vlib/main.h @@ -58,6 +58,7 @@ typedef struct vlib_main_t { + CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); /* Instruction level timing state. */ clib_time_t clib_time; @@ -103,7 +104,11 @@ typedef struct vlib_main_t void *heap_base; uword heap_size; - vlib_buffer_main_t *buffer_main; + /* Pool of buffer free lists. */ + vlib_buffer_free_list_t *buffer_free_list_pool; + + /* List of free-lists needing Blue Light Special announcements */ + vlib_buffer_free_list_t **buffer_announce_list; /* Allocate/free buffer memory for DMA transfers, descriptor rings, etc. buffer memory is guaranteed to be cache-aligned. */ @@ -170,8 +175,6 @@ typedef struct vlib_main_t /* to compare with node runtime */ u32 thread_index; - void **mbuf_alloc_list; - /* List of init functions to call, setup by constructors */ _vlib_init_function_list_elt_t *init_function_registrations; _vlib_init_function_list_elt_t *worker_init_function_registrations;