From 796d0648c1f9da07b758211b78528eaa5fa3c32d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 15 Nov 2010 14:53:23 -0800 Subject: [PATCH] ofproto: Always set VLAN_CFI bit to 0 in ODPAT_SET_DL_TCI action. The kernel requires VLAN_CFI to be 0, not 1. Reported-by: Teemu Koponen Tested-by: Teemu Koponen --- ofproto/ofproto.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index aec0f8fa1..6b071c7d9 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -2795,8 +2795,7 @@ xlate_set_dl_tci(struct action_xlate_ctx *ctx) } else { union odp_action *oa = odp_actions_add(ctx->out, ODPAT_SET_DL_TCI); oa->dl_tci.tci = htons(ntohs(dl_vlan & htons(VLAN_VID_MASK)) - | (dl_vlan_pcp << VLAN_PCP_SHIFT) - | VLAN_CFI); + | (dl_vlan_pcp << VLAN_PCP_SHIFT)); } } -- 2.43.0