From f70cf2337683a97b06fe30ea56fab9ebab556ae7 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Thu, 15 Apr 2021 19:54:44 +0200 Subject: [PATCH] vlib: make vlib_pending_frame_t smaller Type: improvement Change-Id: I8715631718dca9bc7d7b364451b137484aadd58e Signed-off-by: Damjan Marion --- src/vlib/node.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vlib/node.h b/src/vlib/node.h index 21a2022858f..7194ae8a818 100644 --- a/src/vlib/node.h +++ b/src/vlib/node.h @@ -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; -- 2.16.6