diff options
author | Damjan Marion <damarion@cisco.com> | 2019-02-21 20:24:54 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-02-22 01:25:08 +0000 |
commit | 296988d358cd570247dd8b9b8bd5816a856c3d30 (patch) | |
tree | 027fb46f207d6b2a829d7f421449eeba31b270d8 /src/vlib/node.h | |
parent | 67f935ec6eb9ec37b7d73029c5afa89cbf4a9aa2 (diff) |
Add no-append flag to vlib_frame_t
Change-Id: I01c4f5755d579282773ac227b0bc24f8ddbb2bd1
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/node.h')
-rw-r--r-- | src/vlib/node.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vlib/node.h b/src/vlib/node.h index e5d46d83665..ec47f205d11 100644 --- a/src/vlib/node.h +++ b/src/vlib/node.h @@ -417,6 +417,9 @@ typedef struct #define VLIB_FRAME_NO_FREE_AFTER_DISPATCH \ VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH + /* Don't append this frame */ +#define VLIB_FRAME_NO_APPEND (1 << 14) + /* This next frame owns enqueue to node corresponding to node_runtime_index. */ #define VLIB_FRAME_OWNER (1 << 15) |