From: Benjamin LaHaise Date: Fri, 20 Jan 2017 19:07:38 +0000 (-0500) Subject: f_flower: don't set TCA_FLOWER_KEY_ETH_TYPE for "protocol all" X-Git-Tag: v4.10.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f7d406f5dc89229d8aec8b723015c06db343e17;p=thirdparty%2Fiproute2.git f_flower: don't set TCA_FLOWER_KEY_ETH_TYPE for "protocol all" v2 - update to address changes in 00697ca19ae3e1118f2af82c3b41ac4335fe918b. When using the tc flower filter, rules marked with "protocol all" do not actually match all packets. This is due to a bug in f_flower.c that passes in ETH_P_ALL in the TCA_FLOWER_KEY_ETH_TYPE attribute when adding a rule. Fix this by omitting TCA_FLOWER_KEY_ETH_TYPE if the protocol is set to ETH_P_ALL. Fixes: 488b41d020fb ("tc: flower no need to specify the ethertype") Cc: Jamal Hadi Salim Signed-off-by: Benjamin LaHaise Signed-off-by: Benjamin LaHaise Reviewed-by: Roi Dayan --- diff --git a/tc/f_flower.c b/tc/f_flower.c index 314c2dd1e..145a85666 100644 --- a/tc/f_flower.c +++ b/tc/f_flower.c @@ -529,9 +529,11 @@ parse_done: if (ret) return ret; - ret = addattr16(n, MAX_MSG, TCA_FLOWER_KEY_ETH_TYPE, eth_type); - if (ret) - return ret; + if (eth_type != htons(ETH_P_ALL)) { + ret = addattr16(n, MAX_MSG, TCA_FLOWER_KEY_ETH_TYPE, eth_type); + if (ret) + return ret; + } tail->rta_len = (((void *)n)+n->nlmsg_len) - (void *)tail;