From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 455F1A00BE; Wed, 30 Oct 2019 06:41:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6197B1BEB7; Wed, 30 Oct 2019 06:41:54 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 8964D1BEB6 for ; Wed, 30 Oct 2019 06:41:53 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Oct 2019 22:41:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,246,1569308400"; d="scan'208";a="203782271" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga006.jf.intel.com with ESMTP; 29 Oct 2019 22:41:49 -0700 Date: Wed, 30 Oct 2019 13:38:16 +0800 From: Ye Xiaolong To: Ying Wang Cc: qi.z.zhang@intel.com, dev@dpdk.org, qiming.yang@intel.com Message-ID: <20191030053816.GG11315@intel.com> References: <20191029181341.33864-1-ying.a.wang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191029181341.33864-1-ying.a.wang@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH] net/ice: fix flow director X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 10/30, Ying Wang wrote: >Flow director rule can't be created when the flow table is nearly full. >The patch fixed this issue to enable created flows reaching the maximum >number. > >Fixes: 1a2fc1799f09 ("net/ice: reject duplicated flow for flow director") > >Signed-off-by: Ying Wang >--- > drivers/net/ice/ice_fdir_filter.c | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/drivers/net/ice/ice_fdir_filter.c b/drivers/net/ice/ice_fdir_filter.c >index 736ccd54e..9389b1f02 100644 >--- a/drivers/net/ice/ice_fdir_filter.c >+++ b/drivers/net/ice/ice_fdir_filter.c >@@ -366,6 +366,7 @@ ice_fdir_init_filter_list(struct ice_pf *pf) > .hash_func = rte_hash_crc, > .hash_func_init_val = 0, > .socket_id = rte_socket_id(), >+ .extra_flag = RTE_HASH_EXTRA_FLAGS_EXT_TABLE, > }; > > /* Initialize hash */ >-- >2.15.1 > Acked-by: Xiaolong Ye Applied to dpdk-next-net-intel. Thanks.