vlib: make vlib_pending_frame_t smaller

Type: improvement
Change-Id: I8715631718dca9bc7d7b364451b137484aadd58e
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2021-04-15 19:54:44 +02:00
parent 7fdf8b2d5d
commit f70cf23376

View File

@@ -439,12 +439,12 @@ vlib_next_frame_init (vlib_next_frame_t * nf)
/* A frame pending dispatch by main loop. */
typedef struct
{
/* Node and runtime for this frame. */
u32 node_runtime_index;
/* Frame index (in the heap). */
vlib_frame_t *frame;
/* Node and runtime for this frame. */
u32 node_runtime_index;
/* Start of next frames for this node. */
u32 next_frame_index;