vppinfra: new memcpy for x86_64
Change-Id: I5a5055580479960ac53e3f989aa188faf57fb05d Type: improvement Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:

committed by
Florin Coras

parent
904638f462
commit
56f54af21d
@ -81,7 +81,7 @@ vl_api_sw_interface_set_lldp_t_handler (vl_api_sw_interface_set_lldp_t * mp)
|
||||
if (ip4.as_u32 != 0)
|
||||
{
|
||||
vec_validate (mgmt_ip4, sizeof (ip4_address_t) - 1);
|
||||
clib_memcpy (mgmt_ip4, &ip4, vec_len (mgmt_ip4));
|
||||
clib_memcpy (mgmt_ip4, &ip4, sizeof (ip4));
|
||||
}
|
||||
|
||||
ip6_address_decode (mp->mgmt_ip6, &ip6);
|
||||
@ -89,7 +89,7 @@ vl_api_sw_interface_set_lldp_t_handler (vl_api_sw_interface_set_lldp_t * mp)
|
||||
if (!ip6_address_is_zero (&ip6))
|
||||
{
|
||||
vec_validate (mgmt_ip6, sizeof (ip6_address_t) - 1);
|
||||
clib_memcpy (mgmt_ip6, &ip6, vec_len (mgmt_ip6));
|
||||
clib_memcpy (mgmt_ip6, &ip6, sizeof (ip6));
|
||||
}
|
||||
|
||||
if (memcmp (mp->mgmt_oid, no_data, strlen ((char *) mp->mgmt_oid)) != 0)
|
||||
|
@ -175,13 +175,13 @@ lldp_intf_cmd (vlib_main_t * vm, unformat_input_t * input,
|
||||
if (unformat (input, "mgmt-ip4 %U", unformat_ip4_address, &ip4_addr))
|
||||
{
|
||||
vec_validate (mgmt_ip4, sizeof (ip4_address_t) - 1);
|
||||
clib_memcpy (mgmt_ip4, &ip4_addr, vec_len (mgmt_ip4));
|
||||
clib_memcpy (mgmt_ip4, &ip4_addr, sizeof (ip4_addr));
|
||||
}
|
||||
else
|
||||
if (unformat (input, "mgmt-ip6 %U", unformat_ip6_address, &ip6_addr))
|
||||
{
|
||||
vec_validate (mgmt_ip6, sizeof (ip6_address_t) - 1);
|
||||
clib_memcpy (mgmt_ip6, &ip6_addr, vec_len (mgmt_ip6));
|
||||
clib_memcpy (mgmt_ip6, &ip6_addr, sizeof (ip6_addr));
|
||||
}
|
||||
else if (unformat (input, "mgmt-oid %s", &mgmt_oid))
|
||||
;
|
||||
|
Reference in New Issue
Block a user