diff options
author | Damjan Marion <dmarion@me.com> | 2018-11-10 10:23:00 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-11-13 12:17:49 +0000 |
commit | a3d5986a35743a3ca1020155bed8267b5246d155 (patch) | |
tree | 45ce2a42124cab924ddd622862294e0147c54745 /src/vnet/bonding | |
parent | b11175d797c11880d19442f178db5df526ca1256 (diff) |
vlib rename vlib_frame_args(...) to vlib_frame_scalar_args(..)
Typically we have scalar_size == 0, so it doesn't matter
but vlib_frame_args was providing pointer to scalar frame
data, not vector data. To avoid future confusion function
is renamed to vlib_frame_scalar_args(...)
Change-Id: I48b75523b46d487feea24f3f3cb10c528dde516f
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/bonding')
-rw-r--r-- | src/vnet/bonding/device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/bonding/device.c b/src/vnet/bonding/device.c index 13ff644fd73..e7d6cdad407 100644 --- a/src/vnet/bonding/device.c +++ b/src/vnet/bonding/device.c @@ -658,7 +658,7 @@ VNET_DEVICE_CLASS_TX_FN (bond_dev_class) (vlib_main_t * vm, if (PREDICT_FALSE (bif->admin_up == 0)) { - vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors); + vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors); vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters + VNET_INTERFACE_COUNTER_DROP, thread_index, bif->sw_if_index, @@ -671,7 +671,7 @@ VNET_DEVICE_CLASS_TX_FN (bond_dev_class) (vlib_main_t * vm, n_slaves = vec_len (bif->active_slaves); if (PREDICT_FALSE (n_slaves == 0)) { - vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors); + vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors); vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters + VNET_INTERFACE_COUNTER_DROP, thread_index, bif->sw_if_index, |