From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Daley Subject: [PATCH] net/enic: fix fdir UDP v4 source port mask Date: Mon, 17 Oct 2016 22:17:08 -0700 Message-ID: <20161018051708.25218-1-johndale@cisco.com> Cc: dev@dpdk.org, John Daley To: bruce.richardson@intel.com Return-path: Received: from rcdn-iport-3.cisco.com (rcdn-iport-3.cisco.com [173.37.86.74]) by dpdk.org (Postfix) with ESMTP id DEAD32B94 for ; Tue, 18 Oct 2016 07:17:10 +0200 (CEST) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This fixes issue found by Coverity where a typo caused the flow director UDP IPv4 source port mask to be assigned the destination port mask supplied by the caller. Coverity issue: 137860 Fixes: dfbd6a9cb504 ("net/enic: extend flow director support for 1300 series") Signed-off-by: John Daley --- drivers/net/enic/enic_clsf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/enic/enic_clsf.c b/drivers/net/enic/enic_clsf.c index d2413d7..53a7977 100644 --- a/drivers/net/enic/enic_clsf.c +++ b/drivers/net/enic/enic_clsf.c @@ -155,7 +155,7 @@ copy_fltr_v2(struct filter_v2 *fltr, struct rte_eth_fdir_input *input, udp_val.src_port = input->flow.udp4_flow.src_port; } if (input->flow.udp4_flow.dst_port) { - udp_mask.src_port = masks->dst_port_mask; + udp_mask.dst_port = masks->dst_port_mask; udp_val.dst_port = input->flow.udp4_flow.dst_port; } -- 2.10.0