From 21fb4f71ee3824c8f177045f21fea258ece602a9 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 5 Oct 2020 12:26:47 +0000 Subject: fib: Register multicast MAC with interface for accepting interfaces Type: fix Signed-off-by: Neale Ranns Change-Id: Ic6c76b65e2dcc08916373153944507a297c962c0 --- src/vnet/ethernet/packet.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/vnet/ethernet') diff --git a/src/vnet/ethernet/packet.h b/src/vnet/ethernet/packet.h index 13d7dafabfc..e1e42badd06 100644 --- a/src/vnet/ethernet/packet.h +++ b/src/vnet/ethernet/packet.h @@ -64,20 +64,20 @@ typedef struct /* I/G bit: individual (unicast)/group (broadcast/multicast). */ always_inline uword -ethernet_address_cast (u8 * a) +ethernet_address_cast (const u8 * a) { return (a[0] >> 0) & 1; } always_inline int -ethernet_address_is_broadcast (u8 * a) +ethernet_address_is_broadcast (const u8 * a) { return clib_mem_unaligned (a, u32) == 0xffffffff && clib_mem_unaligned (a + 4, u16) == 0xffff; } always_inline uword -ethernet_address_is_locally_administered (u8 * a) +ethernet_address_is_locally_administered (const u8 * a) { return (a[0] >> 1) & 1; } @@ -89,7 +89,7 @@ ethernet_address_set_locally_administered (u8 * a) } always_inline int -eh_dst_addr_to_rx_ctype (ethernet_header_t * eh) +eh_dst_addr_to_rx_ctype (const ethernet_header_t * eh) { if (PREDICT_TRUE (ethernet_address_cast (eh->dst_address) == ETHERNET_ADDRESS_UNICAST)) @@ -107,7 +107,7 @@ eh_dst_addr_to_rx_ctype (ethernet_header_t * eh) } always_inline int -eh_dst_addr_to_tx_ctype (ethernet_header_t * eh) +eh_dst_addr_to_tx_ctype (const ethernet_header_t * eh) { if (PREDICT_TRUE (ethernet_address_cast (eh->dst_address) == ETHERNET_ADDRESS_UNICAST)) -- cgit 1.2.3-korg