From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 4AFCA28FD for ; Thu, 3 Mar 2016 09:36:15 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 03 Mar 2016 00:36:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,531,1449561600"; d="scan'208";a="900144648" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga001.jf.intel.com with ESMTP; 03 Mar 2016 00:36:13 -0800 Received: from fmsmsx117.amr.corp.intel.com (10.18.116.17) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 3 Mar 2016 00:36:13 -0800 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx117.amr.corp.intel.com (10.18.116.17) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 3 Mar 2016 00:36:13 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.24]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.18]) with mapi id 14.03.0248.002; Thu, 3 Mar 2016 16:36:11 +0800 From: "Liu, Yong" To: "thomas.monjalon@6wind.com" Thread-Topic: [dpdk-dev] [PATCH v6 0/6] interrupt mode for fm10k Thread-Index: AQHRX9HeZ1GZhSHl/E+iBeqOchD0mZ9HjoEg Date: Thu, 3 Mar 2016 08:36:10 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E14500DDF@SHSMSX103.ccr.corp.intel.com> References: <1450856233-11825-1-git-send-email-shaopeng.he@intel.com> <1454648270-26760-1-git-send-email-shaopeng.he@intel.com> In-Reply-To: <1454648270-26760-1-git-send-email-shaopeng.he@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzQ0YzA1NDItZGQ5NS00YTNhLTg0MTItYzYyZDU4NmFiNzFlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkcyVzhqcEhqVkxCeElVYlp4RFRcL2IzZzB0OWVZM2luV1hoZzNYYkpuaUpBPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v6 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, 03 Mar 2016 08:36:16 -0000 Hi Thomas, In patchwork website, this patch set seem that has been applied.=20 http://dpdk.org/dev/patchwork/patch/10381/ But I can't find it neither in dpdk repo nor in dpdk-next-net repo.=20 Could you check with that?=20 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Shaopeng He > Sent: Friday, February 05, 2016 12:58 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v6 0/6] interrupt mode for fm10k >=20 > This patch series adds interrupt mode support for fm10k, > contains four major parts: >=20 > 1. implement rx_descriptor_done function in fm10k > 2. add rx interrupt support in fm10k PF and VF > 3. make sure default VID available in dev_init in fm10k > 4. fix a memory leak for non-ip packet in l3fwd-power, > which happens mostly when testing fm10k interrupt mode. >=20 > v6 changes: > - add fixes line > - relocate version change message in individual patch > after the --- separator >=20 > v5 changes: > - remove one unnecessary NULL check for rte_free > - fix a wrong error message > - add more clean up when memory allocation fails > - split line over 80 characters to 2 lines > - update interrupt mode limitation in fm10k.rst >=20 > v4 changes: > - rebase to latest code > - update release 2.3 note in corresponding patches >=20 > v3 changes: > - rebase to latest code > - macro renaming according to the EAL change >=20 > v2 changes: > - reword some comments and commit messages > - split one big patch into three smaller ones >=20 > Shaopeng He (6): > fm10k: implement rx_descriptor_done function > fm10k: setup rx queue interrupts for PF and VF > fm10k: remove rx queue interrupts when dev stops > fm10k: add rx queue interrupt en/dis functions > fm10k: make sure default VID available in dev_init > l3fwd-power: fix a memory leak for non-ip packet >=20 > doc/guides/nics/fm10k.rst | 7 ++ > doc/guides/rel_notes/release_2_3.rst | 8 ++ > drivers/net/fm10k/fm10k.h | 6 ++ > drivers/net/fm10k/fm10k_ethdev.c | 174 > ++++++++++++++++++++++++++++++++--- > drivers/net/fm10k/fm10k_rxtx.c | 25 +++++ > examples/l3fwd-power/main.c | 3 +- > 6 files changed, 211 insertions(+), 12 deletions(-) >=20 > -- > 1.9.3