From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id 485A94C93 for ; Tue, 14 Aug 2018 13:14:21 +0200 (CEST) Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=lap.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fpXAk-0000wO-Sk; Tue, 14 Aug 2018 11:07:34 +0000 From: Christian Ehrhardt To: Shahed Shaikh Cc: dpdk stable Date: Tue, 14 Aug 2018 13:06:46 +0200 Message-Id: <20180814110651.25277-43-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180814110651.25277-1-christian.ehrhardt@canonical.com> References: <20180814110651.25277-1-christian.ehrhardt@canonical.com> Subject: [dpdk-stable] patch 'net/qede: fix ntuple filter configuration' has been queued to stable release 18.05.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 11:14:21 -0000 Hi, FYI, your patch has been queued to stable release 18.05.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 08/16/18. So please shout if anyone has objections. Thanks. Christian Ehrhardt --- >>From 9a161855fbff3e414bf95523ee445cd1a6eb57db Mon Sep 17 00:00:00 2001 From: Shahed Shaikh Date: Tue, 7 Aug 2018 22:38:34 -0700 Subject: [PATCH] net/qede: fix ntuple filter configuration [ upstream commit 10191fcd1a00d4dc55302d5f4abe97b5f3df0704 ] PMD did not pass down the intended queue id while configuring the ntuple filter. Fixes: 622075356e8f ("net/qede: support ntuple and flow director filter") Signed-off-by: Shahed Shaikh --- drivers/net/qede/qede_fdir.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/qede/qede_fdir.c b/drivers/net/qede/qede_fdir.c index 9d0b0526a..5cca2e2c0 100644 --- a/drivers/net/qede/qede_fdir.c +++ b/drivers/net/qede/qede_fdir.c @@ -465,5 +465,8 @@ int qede_ntuple_filter_conf(struct rte_eth_dev *eth_dev, udpv4_flow->src_port = ntuple->src_port; udpv4_flow->dst_port = ntuple->dst_port; } + + fdir_entry.action.rx_queue = ntuple->queue; + return qede_config_cmn_fdir_filter(eth_dev, &fdir_entry, add); } -- 2.17.1