Remove c-11 memcpy checks from perf-critical code
[vpp.git] / src / plugins / lacp / node.c
index 447e85f..d869726 100644 (file)
@@ -102,7 +102,7 @@ lacp_node_fn (vlib_main_t * vm,
            ? b0->current_length : sizeof (t0->pkt);
          t0->len = len;
          t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
-         clib_memcpy (&t0->pkt, vlib_buffer_get_current (b0), len);
+         clib_memcpy_fast (&t0->pkt, vlib_buffer_get_current (b0), len);
        }
       /* push this pkt to the next graph node, always error-drop */
       vlib_set_next_frame_buffer (vm, node, next0, bi0);