From 3bcf1a940a3699ba3cda6aaecd21b14573709adc Mon Sep 17 00:00:00 2001 From: Prashant Maheshwari Date: Wed, 31 Jul 2019 21:37:33 +0530 Subject: ethernet: change to mark the CFI bit in the L2 header. Type: fix Fixes: 039cbfe2 Signed-off-by: Prashant Maheshwari Change-Id: Idca91c73758824688dd6ce61df994be66753d838 --- src/vnet/ethernet/packet.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/vnet/ethernet') diff --git a/src/vnet/ethernet/packet.h b/src/vnet/ethernet/packet.h index d70960b0f7b..13d7dafabfc 100644 --- a/src/vnet/ethernet/packet.h +++ b/src/vnet/ethernet/packet.h @@ -142,8 +142,8 @@ ethernet_vlan_header_set_priority_net_order (ethernet_vlan_header_t * h, { u8 *bytes = (u8 *) (&h->priority_cfi_and_id); - bytes[0] &= 0x1f; - bytes[0] |= (prio & 0x7) << 5; + bytes[0] &= 0x0f; + bytes[0] |= (prio & 0xf) << 4; } always_inline u8 @@ -151,7 +151,7 @@ ethernet_vlan_header_get_priority_net_order (ethernet_vlan_header_t * h) { u8 *bytes = (u8 *) (&h->priority_cfi_and_id); - return (bytes[0] >> 5); + return (bytes[0] >> 4); } /* VLAN with ethertype first and vlan id second */ -- cgit 1.2.3-korg