From patchwork Mon Nov 18 22:23:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Cao, Yahui" X-Patchwork-Id: 63089 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 01225A0350; Mon, 18 Nov 2019 15:39:53 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2CD4ACF3; Mon, 18 Nov 2019 15:39:52 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B692E9E4 for ; Mon, 18 Nov 2019 15:39:49 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Nov 2019 06:39:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,320,1569308400"; d="scan'208";a="380674933" Received: from dpdk-yahui-skylake.sh.intel.com ([10.67.119.16]) by orsmga005.jf.intel.com with ESMTP; 18 Nov 2019 06:39:46 -0800 From: Yahui Cao To: Qiming Yang , Wenzhuo Lu Cc: dev@dpdk.org, Qi Zhang , Yahui Cao , Xiaolong Ye , Beilei Xing Date: Tue, 19 Nov 2019 06:23:41 +0800 Message-Id: <20191118222343.45282-1-yahui.cao@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191113160921.90573-1-yahui.cao@intel.com> References: <20191113160921.90573-1-yahui.cao@intel.com> Subject: [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" 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. Tested-by: Qi Zhang Acked-by: Qi Zhang --- 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(-)