diff options
author | MathiasRaoul <mathias.raoul@gmail.com> | 2019-10-04 15:28:00 +0000 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-10-18 14:37:29 +0000 |
commit | 47c6f36be723f0e02e9a842701d7ca63dfcb8b94 (patch) | |
tree | df131e6a8a960ff5f2a062f15169ab603ceef844 /src/plugins/hs_apps/sapi/vpp_echo.c | |
parent | 7fc3d97b82fdec65ff4fb5b6dbfd8b85bf9b0098 (diff) |
hsa: make APP_OPTIONS_PREALLOC_FIFO_PAIRS configurable
-add prealloc_fifo_pairs member in echo_main_t
-new cli parameter in vpp_echo
Type: feature
Signed-off-by: MathiasRaoul <mathias.raoul@gmail.com>
Change-Id: I6bb1214ee93e06421cd0a3721420278c51cd59c4
(cherry picked from commit 7028a0157e28066696fba7d9978f7ab474f4d4f8)
Diffstat (limited to 'src/plugins/hs_apps/sapi/vpp_echo.c')
-rw-r--r-- | src/plugins/hs_apps/sapi/vpp_echo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/hs_apps/sapi/vpp_echo.c b/src/plugins/hs_apps/sapi/vpp_echo.c index 407ab3f3816..f0aa6a9e050 100644 --- a/src/plugins/hs_apps/sapi/vpp_echo.c +++ b/src/plugins/hs_apps/sapi/vpp_echo.c @@ -881,6 +881,8 @@ echo_process_opts (int argc, char **argv) em->use_sock_api = 0; else if (unformat (a, "fifo-size %d", &tmp)) em->fifo_size = tmp << 10; + else if (unformat (a, "prealloc-fifos %u", &em->prealloc_fifo_pairs)) + ; else if (unformat (a, "rx-buf %U", unformat_data, &em->rx_buf_size)) ; else if (unformat (a, "tx-buf %U", unformat_data, &em->tx_buf_size)) @@ -1004,6 +1006,7 @@ main (int argc, char **argv) em->socket_name = format (0, "%s%c", API_SOCKET_FILE, 0); em->use_sock_api = 1; em->fifo_size = 64 << 10; + em->prealloc_fifo_pairs = 16; em->n_clients = 1; em->n_connects = 1; em->n_sessions = 2; |