From b44e9bc90b634b07d5f93a731a95028adc73bcbc Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Fri, 19 Feb 2016 09:06:23 -0500 Subject: Serialize and upload the data plane node graph Include node names and graph arcs. Prep work for uploading node runtime data, so the latter can be reported in a comprehensible manner. Change-Id: I215b1f8cff244200c37c7e088f1f22229dc97eb6 Signed-off-by: Dave Barach --- vpp-api-test/vat/vat.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'vpp-api-test/vat/vat.h') diff --git a/vpp-api-test/vat/vat.h b/vpp-api-test/vat/vat.h index 0d012cf2d32..b32d9ffc754 100644 --- a/vpp-api-test/vat/vat.h +++ b/vpp-api-test/vat/vat.h @@ -94,6 +94,10 @@ typedef struct { /* subinterface table */ sw_interface_subif_t * sw_if_subif_table; + /* Graph node table */ + uword * graph_node_index_by_name; + vlib_node_t ** graph_nodes; + /* ip tables */ ip_details_t * ip_details_by_sw_if_index[2]; @@ -115,6 +119,7 @@ typedef struct { /* Errors by number */ uword * error_string_by_error_number; + /* Main thread can spin (w/ timeout) here if needed */ u32 async_mode; u32 async_errors; -- cgit 1.2.3-korg