aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/dpdk/buffer.c
diff options
context:
space:
mode:
authorChris Luke <chrisy@flirble.org>2017-07-07 14:57:07 -0400
committerDamjan Marion <dmarion.lists@gmail.com>2017-07-13 19:24:43 +0000
commita2522f6fd57eb93f57dfcc27c59862d4cc32879a (patch)
tree4a453c443d93814a5a44e808e28076eb491129ea /src/plugins/dpdk/buffer.c
parente2d40b81585bceaf30b8547554aab24d60e7d396 (diff)
dpdk: fix dpdk_buffer_pool_create name
- vnet_buffer_pool_create should probably be named dpdk_buffer_pool_create since that is what it does. - Its prototype should also be in a DPDK plugin header, not in vlib/buffer_funcs.h, since the implementation is in the plugin and nobody else should be calling it. Change-Id: I7ba259afa4b888bc94f3ad257305e286b41e7370 Signed-off-by: Chris Luke <chrisy@flirble.org>
Diffstat (limited to 'src/plugins/dpdk/buffer.c')
-rw-r--r--src/plugins/dpdk/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dpdk/buffer.c b/src/plugins/dpdk/buffer.c
index aa73eb6c008..b0f247e1573 100644
--- a/src/plugins/dpdk/buffer.c
+++ b/src/plugins/dpdk/buffer.c
@@ -427,7 +427,7 @@ dpdk_packet_template_init (vlib_main_t * vm,
}
clib_error_t *
-vlib_buffer_pool_create (vlib_main_t * vm, unsigned num_mbufs,
+dpdk_buffer_pool_create (vlib_main_t * vm, unsigned num_mbufs,
unsigned socket_id)
{
dpdk_main_t *dm = &dpdk_main;