From patchwork Thu Sep 29 20:56:36 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "John Daley (johndale)" X-Patchwork-Id: 16257 X-Patchwork-Delegate: bruce.richardson@intel.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 66E2229CD; Thu, 29 Sep 2016 22:57:00 +0200 (CEST) Received: from rcdn-iport-1.cisco.com (rcdn-iport-1.cisco.com [173.37.86.72]) by dpdk.org (Postfix) with ESMTP id 1E765298F for ; Thu, 29 Sep 2016 22:56:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=895; q=dns/txt; s=iport; t=1475182619; x=1476392219; h=from:to:cc:subject:date:message-id; bh=5U/T3AcmJSDD8x1DJmQSkHnXmXKiKKBP3sX/dVnTwOQ=; b=a3Mqv6FNwd941gzDD+/cffdi8fMEcIYzfCaaPbmJ3mWYl9JUe59A+KoX 0y67PwN2cJ48stI2k7VDYqgsbP7sncfjaubqzW5gU2FuK3j6Hq/AShcpk lDioU7QXKEDS3eB1O0klvfLzNrXpVMIk3lwMGAgdNtsNgJ1Co4IA/d/yX 8=; X-IronPort-AV: E=Sophos;i="5.31,417,1473120000"; d="scan'208";a="158183689" Received: from rcdn-core-2.cisco.com ([173.37.93.153]) by rcdn-iport-1.cisco.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Sep 2016 20:56:58 +0000 Received: from cisco.com (savbu-usnic-a.cisco.com [10.193.184.48]) by rcdn-core-2.cisco.com (8.14.5/8.14.5) with ESMTP id u8TKuwZI008764; Thu, 29 Sep 2016 20:56:58 GMT Received: by cisco.com (Postfix, from userid 392789) id 2A5313FAAE0E; Thu, 29 Sep 2016 13:56:58 -0700 (PDT) From: John Daley To: bruce.richardson@intel.com Cc: dev@dpdk.org, John Daley Date: Thu, 29 Sep 2016 13:56:36 -0700 Message-Id: <20160929205639.1175-1-johndale@cisco.com> X-Mailer: git-send-email 2.10.0 Subject: [dpdk-dev] [PATCH 1/4] net/enic: fix fdir usage with scattered Rx X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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" The wrong queue id was being used in the enic flow director code after the scattered Rx feature was added. Fixes: 856d7ba7ed22 ("net/enic: support scattered Rx") Signed-off-by: John Daley --- drivers/net/enic/enic_clsf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/enic/enic_clsf.c b/drivers/net/enic/enic_clsf.c index e6f57be..b251b7f 100644 --- a/drivers/net/enic/enic_clsf.c +++ b/drivers/net/enic/enic_clsf.c @@ -120,7 +120,9 @@ int enic_fdir_add_fltr(struct enic *enic, struct rte_eth_fdir_filter *params) return -ENOTSUP; } - queue = params->action.rx_queue; + /* Get the enicpmd RQ from the DPDK Rx queue */ + queue = enic_sop_rq(params->action.rx_queue); + /* See if the key is already there in the table */ pos = rte_hash_del_key(enic->fdir.hash, params); switch (pos) {