From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 40150A2EDB
	for <public@inbox.dpdk.org>; Thu,  5 Sep 2019 20:43:26 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 07BF21F03A;
	Thu,  5 Sep 2019 20:43:25 +0200 (CEST)
Received: from mga17.intel.com (mga17.intel.com [192.55.52.151])
 by dpdk.org (Postfix) with ESMTP id 7D66F1F039
 for <dev@dpdk.org>; Thu,  5 Sep 2019 20:43:23 +0200 (CEST)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from orsmga001.jf.intel.com ([10.7.209.18])
 by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 05 Sep 2019 11:43:22 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.64,471,1559545200"; d="scan'208";a="267112713"
Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203])
 by orsmga001.jf.intel.com with ESMTP; 05 Sep 2019 11:43:21 -0700
Received: from fmsmsx151.amr.corp.intel.com (10.18.125.4) by
 FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS)
 id 14.3.439.0; Thu, 5 Sep 2019 11:43:21 -0700
Received: from fmsmsx107.amr.corp.intel.com ([169.254.6.225]) by
 FMSMSX151.amr.corp.intel.com ([169.254.7.151]) with mapi id 14.03.0439.000;
 Thu, 5 Sep 2019 11:34:27 -0700
From: "Maslekar, Omkar" <omkar.maslekar@intel.com>
To: "Li, Xiaoyun" <xiaoyun.li@intel.com>, "Wu, Jingjing"
 <jingjing.wu@intel.com>, "Wiles, Keith" <keith.wiles@intel.com>, "Liang,
 Cunming" <cunming.liang@intel.com>
CC: "dev@dpdk.org" <dev@dpdk.org>
Thread-Topic: [PATCH 0/4] enable FIFO for NTB
Thread-Index: AQHVY6xV4ZdttG64t06RU70sGKKSlqcdaVkw
Date: Thu, 5 Sep 2019 18:34:26 +0000
Message-ID: <2476515547DC034BAAEDE04CAA5615E56A4062E0@fmsmsx107.amr.corp.intel.com>
References: <20190905053933.27929-1-xiaoyun.li@intel.com>
In-Reply-To: <20190905053933.27929-1-xiaoyun.li@intel.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMTEyMDhlZDctMzY2OC00ZmUxLThlMzQtOTdhY2Y3NWI5ZTAyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiMHpPXC9tVVwvdXc3ZUVka1wvSURPOWViS3FJZFp5ZmpBQ2ZXSmJ2YzR6a0dEWm9BRWhXYlNuN0JuQXl6TUJOTVdQciJ9
x-ctpclassification: CTP_NT
dlp-product: dlpe-windows
dlp-version: 11.2.0.6
dlp-reaction: no-action
x-originating-ip: [10.1.200.106]
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Subject: Re: [dpdk-dev] [PATCH 0/4] enable FIFO for NTB
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

Acked-by: Omkar Maslekar <omkar.maslekar@intel.com>

-----Original Message-----
From: Li, Xiaoyun=20
Sent: Wednesday, September 4, 2019 10:39 PM
To: Wu, Jingjing <jingjing.wu@intel.com>; Wiles, Keith <keith.wiles@intel.c=
om>; Maslekar, Omkar <omkar.maslekar@intel.com>; Liang, Cunming <cunming.li=
ang@intel.com>
Cc: dev@dpdk.org; Li, Xiaoyun <xiaoyun.li@intel.com>
Subject: [PATCH 0/4] enable FIFO for NTB

Enable FIFO for NTB rawdev driver to support packet based processing. And a=
n example is provided to support txonly, rxonly, iofwd between NTB device a=
nd ethdev, and file transmission.

Xiaoyun Li (4):
  raw/ntb: setup ntb queue
  raw/ntb: add xstats support
  raw/ntb: add enqueue and dequeue functions
  examples/ntb: support more functions for NTB

 doc/guides/rawdevs/ntb.rst             |   67 +-
 doc/guides/rel_notes/release_19_11.rst |    4 +
 doc/guides/sample_app_ug/ntb.rst       |   59 +-
 drivers/raw/ntb/Makefile               |    3 +
 drivers/raw/ntb/meson.build            |    1 +
 drivers/raw/ntb/ntb.c                  | 1078 +++++++++++++++-----
 drivers/raw/ntb/ntb.h                  |  162 ++-
 drivers/raw/ntb/ntb_hw_intel.c         |   48 +-
 drivers/raw/ntb/rte_pmd_ntb.h          |   43 +
 examples/ntb/meson.build               |    3 +
 examples/ntb/ntb_fwd.c                 | 1297 +++++++++++++++++++++---
 11 files changed, 2349 insertions(+), 416 deletions(-)  create mode 100644=
 drivers/raw/ntb/rte_pmd_ntb.h

--
2.17.1