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 02ED9A04B4; Tue, 19 Nov 2019 06:15:09 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9C86DA69; Tue, 19 Nov 2019 06:15:08 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id F0AD7237 for ; Tue, 19 Nov 2019 06:15:06 +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; 18 Nov 2019 21:15:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,322,1569308400"; d="scan'208";a="209304321" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga006.jf.intel.com with ESMTP; 18 Nov 2019 21:15:04 -0800 Date: Tue, 19 Nov 2019 13:11:33 +0800 From: Ye Xiaolong To: Yahui Cao Cc: Qiming Yang , Wenzhuo Lu , dev@dpdk.org, Qi Zhang , Beilei Xing Message-ID: <20191119051133.GJ69793@intel.com> References: <20191113160921.90573-1-yahui.cao@intel.com> <20191118222343.45282-1-yahui.cao@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191118222343.45282-1-yahui.cao@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v2 0/2] fix testpmd quit error after FDIR rule created 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 11/19, Yahui Cao wrote: >This patch series fixes FDIR error when immediately quit without >flushing FDIR rule in testpmd. > >- Patch 1 adds programming status check mechanism to monitor FDIR status. >- Patch 2 moves FDIR queue irq config out of device start/stop. > >-- >v2: >* Seperate FDIR/LAN queue irq config > >Yahui Cao (2): > net/ice: fix FDIR programming status check issue > net/ice: fix FDIR rule failure after device stop > > drivers/net/ice/ice_ethdev.c | 15 +---- > drivers/net/ice/ice_ethdev.h | 3 + > drivers/net/ice/ice_fdir_filter.c | 7 +++ > drivers/net/ice/ice_rxtx.c | 93 +++++++++++++++++++++++++++++-- > 4 files changed, 100 insertions(+), 18 deletions(-) > >-- >2.17.1 > Applied to dpdk-next-net-intel, Thanks.