aboutsummaryrefslogtreecommitdiffstats
path: root/docs/report/vpp_performance_tests/packet_throughput_graphs/ip4-2n-dnv-x553.rst
AgeCommit message (Collapse)AuthorFilesLines
2021-07-22Report: Add af-xdpTibor Frank1-6/+6
- elements(tput, speed-up) - static content (tput, speedup) - data - Latency Change-Id: I793fd4e6e6b189d93a267635b8bf07baad19accd Signed-off-by: Tibor Frank <tifrank@cisco.com>
2021-06-30Report: Implement changes from job-specsTibor Frank1-73/+0
Change-Id: Id9497ae02eb47fed40b9e4c33b98a81c34b71964 Signed-off-by: Tibor Frank <tifrank@cisco.com>
2020-02-26Report: PlotsTibor Frank1-30/+31
Change-Id: Ic9e771417abb2c7d66a5124d77cd8e0dbe052845 Signed-off-by: Tibor Frank <tifrank@cisco.com>
2019-09-05Report: Add 2n-dnv plots and tablesTibor Frank1-0/+143
Change-Id: Ibbd1775bec26817a4c193bc67ba03b29b8ddfff7 Signed-off-by: Tibor Frank <tifrank@cisco.com>
2019-08-26Report: Select tests by name, specificationsTibor Frank1-116/+0
Change-Id: Ibcc5e67d49fba9c02b07af462a74d2a062412979 Signed-off-by: Tibor Frank <tifrank@cisco.com>
2019-02-11Report: Remove indexTibor Frank1-32/+8
Change-Id: I477711ef75e07db26e36b3567883f9a7feb45a09 Signed-off-by: Tibor Frank <tifrank@cisco.com>
2018-12-03CSIT-1374: Split the files with graphs int he ReportTibor Frank1-0/+140
- Packet Latency - Throughput Speedup Analysis - Packet Throughput Change-Id: If0df9fe8940eae08734f95c5150e10f2317c4927 Signed-off-by: Tibor Frank <tifrank@cisco.com>
\ _(NETMAP_DELETE, netmap_delete) \ static void vl_api_netmap_create_t_handler (vl_api_netmap_create_t * mp) { vlib_main_t *vm = vlib_get_main (); vl_api_netmap_create_reply_t *rmp; int rv = 0; u8 *if_name = NULL; if_name = format (0, "%s", mp->netmap_if_name); vec_add1 (if_name, 0); rv = netmap_create_if (vm, if_name, mp->use_random_hw_addr ? 0 : mp->hw_addr, mp->is_pipe, mp->is_master, 0); vec_free (if_name); REPLY_MACRO (VL_API_NETMAP_CREATE_REPLY); } static void vl_api_netmap_delete_t_handler (vl_api_netmap_delete_t * mp) { vlib_main_t *vm = vlib_get_main (); vl_api_netmap_delete_reply_t *rmp; int rv = 0; u8 *if_name = NULL; if_name = format (0, "%s", mp->netmap_if_name); vec_add1 (if_name, 0); rv = netmap_delete_if (vm, if_name); vec_free (if_name); REPLY_MACRO (VL_API_NETMAP_DELETE_REPLY); } #include <netmap/netmap.api.c> static clib_error_t * netmap_api_hookup (vlib_main_t * vm) { /* * Set up the (msg_name, crc, message-id) table */ setup_message_id_table (); return 0; } VLIB_API_INIT_FUNCTION (netmap_api_hookup); /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */