From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 76FF25A53 for ; Fri, 30 Oct 2015 08:36:39 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP; 30 Oct 2015 00:36:39 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,217,1444719600"; d="scan'208";a="839108008" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga002.fm.intel.com with ESMTP; 30 Oct 2015 00:36:39 -0700 Received: from fmsmsx117.amr.corp.intel.com (10.18.116.17) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 00:36:38 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx117.amr.corp.intel.com (10.18.116.17) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 00:36:37 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.194]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.96]) with mapi id 14.03.0248.002; Fri, 30 Oct 2015 15:36:36 +0800 From: "Wu, Jingjing" To: "Liang, Cunming" , "dev@dpdk.org" Thread-Topic: [PATCH v2 10/11] i40evf: add rx interrupt support Thread-Index: AQHREtPYQl5gD5DVVU+5xGoydsa1Hp6DpVeQ Date: Fri, 30 Oct 2015 07:36:36 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F8D0D92F@SHSMSX104.ccr.corp.intel.com> References: <1443072831-19065-1-git-send-email-cunming.liang@intel.com> <1446182873-28814-1-git-send-email-cunming.liang@intel.com> <1446182873-28814-11-git-send-email-cunming.liang@intel.com> In-Reply-To: <1446182873-28814-11-git-send-email-cunming.liang@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 v2 10/11] i40evf: add rx interrupt support 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: Fri, 30 Oct 2015 07:36:39 -0000 > -----Original Message----- > From: Liang, Cunming > Sent: Friday, October 30, 2015 1:28 PM > To: dev@dpdk.org > Cc: Zhang, Helin; He, Shaopeng; Wu, Jingjing; Liang, Cunming > Subject: [PATCH v2 10/11] i40evf: add rx interrupt support >=20 > v2 changes: > - turn on intr only when rxq flag is set > - rework base on patch http://dpdk.org/dev/patchwork/patch/7504/ >=20 > The patch enables rx interrupt support on i40e VF and some necessary > change on PF IOV mode to support VF. > On PF side, running in IOV mode via uio won't allow rx interrupt which is > exclusive with mbox interrupt in single vector competition. > On VF side, one single vector is shared for all the rx queues. >=20 > Signed-off-by: Cunming Liang > --- Acked-by: Jingjing Wu Just note that http://dpdk.org/dev/patchwork/patch/7504/ is already replace by http://dpdk.org/dev/patchwork/patch/7790/ for few code style fix. > drivers/net/i40e/i40e_ethdev.c | 38 +++++----- > drivers/net/i40e/i40e_ethdev.h | 15 ++++ > drivers/net/i40e/i40e_ethdev_vf.c | 143 > +++++++++++++++++++++++++++++++++++--- > drivers/net/i40e/i40e_pf.c | 5 -- > 4 files changed, 166 insertions(+), 35 deletions(-) >=20