diff options
author | Damjan Marion <damarion@cisco.com> | 2018-04-26 22:45:40 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-04-27 11:20:58 +0000 |
commit | aa682a39b76ee043f65313f23e134bf18fe7a47e (patch) | |
tree | 5cd74943911f0a7a9a886e0c309cb18ca1841eb3 /src/vlib/buffer.h | |
parent | 582caa3bb67a1380c12790ba6f98450b92835761 (diff) |
A bit of buffer metadata reshuffling to accommodate flow_id
Change-Id: I2794384557c6272fe217269b14a9db09eda19220
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/buffer.h')
-rw-r--r-- | src/vlib/buffer.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/vlib/buffer.h b/src/vlib/buffer.h index 6d352ce580f..9555cd7d224 100644 --- a/src/vlib/buffer.h +++ b/src/vlib/buffer.h @@ -120,31 +120,24 @@ typedef struct <br> VLIB_BUFFER_FLAG_USER(n): user-defined bit N */ + u32 flow_id; /**< Generic flow identifier */ - STRUCT_MARK (template_end); u32 next_buffer; /**< Next buffer for this linked-list of buffers. Only valid if VLIB_BUFFER_NEXT_PRESENT flag is set. */ - vlib_error_t error; /**< Error code for buffers to be enqueued - to error handler. - */ + STRUCT_MARK (template_end); + u32 current_config_index; /**< Used by feature subgraph arcs to visit enabled feature nodes */ - - u8 feature_arc_index; /**< Used to identify feature arcs by intermediate - feature node + vlib_error_t error; /**< Error code for buffers to be enqueued + to error handler. */ - u8 n_add_refs; /**< Number of additional references to this buffer. */ u8 buffer_pool_index; /**< index of buffer pool this buffer belongs. */ - u8 dont_waste_me[1]; /**< Available space in the (precious) - first 32 octets of buffer metadata - Before allocating any of it, discussion required! - */ u32 opaque[10]; /**< Opaque data used by sub-graphs for their own purposes. See .../vnet/vnet/buffer.h |