From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 2A1DA5936 for ; Thu, 24 Dec 2015 09:04:16 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP; 24 Dec 2015 00:04:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,472,1444719600"; d="scan'208";a="877927230" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga002.jf.intel.com with ESMTP; 24 Dec 2015 00:04:15 -0800 Received: from fmsmsx152.amr.corp.intel.com (10.18.125.5) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 24 Dec 2015 00:04:14 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by FMSMSX152.amr.corp.intel.com (10.18.125.5) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 24 Dec 2015 00:04:14 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.190]) by shsmsx102.ccr.corp.intel.com ([169.254.2.158]) with mapi id 14.03.0248.002; Thu, 24 Dec 2015 16:04:12 +0800 From: "Qiu, Michael" To: "He, Shaopeng" , "dev@dpdk.org" Thread-Topic: [PATCH v5 0/6] interrupt mode for fm10k Thread-Index: AQHRPVTsoFrF6RkJj0m32BGwhaaMMw== Date: Thu, 24 Dec 2015 08:04:11 +0000 Message-ID: <533710CFB86FA344BFBF2D6802E6028622F001BD@SHSMSX101.ccr.corp.intel.com> References: <1450693192-14500-1-git-send-email-shaopeng.he@intel.com> <1450856233-11825-1-git-send-email-shaopeng.he@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v5 0/6] interrupt mode for fm10k 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: , X-List-Received-Date: Thu, 24 Dec 2015 08:04:16 -0000 On 12/23/2015 3:38 PM, He, Shaopeng wrote:=0A= > This patch series adds interrupt mode support for fm10k,=0A= > contains four major parts:=0A= >=0A= > 1. implement rx_descriptor_done function in fm10k=0A= > 2. add rx interrupt support in fm10k PF and VF=0A= > 3. make sure default VID available in dev_init in fm10k=0A= > 4. fix a memory leak for non-ip packet in l3fwd-power,=0A= > which happens mostly when testing fm10k interrupt mode.=0A= >=0A= > v5 changes:=0A= > - remove one unnecessary NULL check for rte_free=0A= > - fix a wrong error message=0A= > - add more clean up when memory allocation fails=0A= > - split line over 80 characters to 2 lines=0A= > - update interrupt mode limitation in fm10k.rst=0A= >=0A= > v4 changes:=0A= > - rebase to latest code=0A= > - update release 2.3 note in corresponding patches=0A= >=0A= > v3 changes:=0A= > - rebase to latest code=0A= > - macro renaming according to the EAL change=0A= >=0A= > v2 changes:=0A= > - reword some comments and commit messages=0A= > - split one big patch into three smaller ones=0A= >=0A= > Shaopeng He (6):=0A= > fm10k: implement rx_descriptor_done function=0A= > fm10k: setup rx queue interrupts for PF and VF=0A= > fm10k: remove rx queue interrupts when dev stops=0A= > fm10k: add rx queue interrupt en/dis functions=0A= > fm10k: make sure default VID available in dev_init=0A= > l3fwd-power: fix a memory leak for non-ip packet=0A= >=0A= > doc/guides/nics/fm10k.rst | 7 ++=0A= > doc/guides/rel_notes/release_2_3.rst | 8 ++=0A= > drivers/net/fm10k/fm10k.h | 6 ++=0A= > drivers/net/fm10k/fm10k_ethdev.c | 174 +++++++++++++++++++++++++++++= +++---=0A= > drivers/net/fm10k/fm10k_rxtx.c | 25 +++++=0A= > examples/l3fwd-power/main.c | 3 +-=0A= > 6 files changed, 211 insertions(+), 12 deletions(-)=0A= >=0A= =0A= Acked-by: Michael Qiu =0A=