Remove c-11 memcpy checks from perf-critical code

Change-Id: Id4f37f5d4a03160572954a416efa1ef9b3d79ad1
Signed-off-by: Dave Barach <dave@barachs.net>
This commit is contained in:
Dave Barach
2018-11-13 16:34:13 -05:00
committed by Florin Coras
parent 6917b94f21
commit 178cf493d0
178 changed files with 1351 additions and 1301 deletions

View File

@@ -121,8 +121,8 @@ nsim_inline (vlib_main_t * vm,
? nsm->sw_if_index1 : nsm->sw_if_index0;
ep->current_length = vlib_buffer_length_in_chain (vm, b[0]);
ASSERT (ep->current_length <= WHEEL_ENTRY_DATA_SIZE);
clib_memcpy (ep->data, vlib_buffer_get_current (b[0]),
ep->current_length);
clib_memcpy_fast (ep->data, vlib_buffer_get_current (b[0]),
ep->current_length);
}
else /* out of wheel space, drop pkt */
{

View File

@@ -154,7 +154,7 @@ nsim_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
b0->current_length = ep->current_length;
/* Copy data from the ring */
clib_memcpy (b0->data, ep->data, ep->current_length);
clib_memcpy_fast (b0->data, ep->data, ep->current_length);
b0->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
vnet_buffer (b0)->sw_if_index[VLIB_TX] = ep->tx_sw_if_index;
vnet_buffer (b0)->sw_if_index[VLIB_RX] =