X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fmfib%2Fmfib_table.h;h=b8ade8b5cd970584f46c750376cb03c8add261d5;hb=eb97e5f548b009ffa92efa3f778b4a7f6f40b7eb;hp=4c1077f900d41956ce6562851b3fa502ccaadbad;hpb=f9342023c19887da656133e2688a90d70383b0c5;p=vpp.git diff --git a/src/vnet/mfib/mfib_table.h b/src/vnet/mfib/mfib_table.h index 4c1077f900d..b8ade8b5cd9 100644 --- a/src/vnet/mfib/mfib_table.h +++ b/src/vnet/mfib/mfib_table.h @@ -34,6 +34,11 @@ */ typedef struct mfib_table_t_ { + /** + * Required for pool_get_aligned + */ + CLIB_CACHE_LINE_ALIGN_MARK(cacheline0); + /** * A union of the protocol specific FIBs that provide the * underlying LPM mechanism. @@ -347,6 +352,7 @@ extern u32 mfib_table_find_or_create_and_lock_w_name(fib_protocol_t proto, mfib_source_t source, const u8 *name); + /** * @brief * Take a reference counting lock on the table @@ -419,5 +425,9 @@ extern void mfib_table_walk(u32 fib_index, fib_protocol_t proto, mfib_table_walk_fn_t fn, void *ctx); +/** + * @brief format (display) the memory usage for mfibs + */ +extern u8 * format_mfib_table_memory(u8 * s, va_list * args); #endif