List cover comments

GET /api/covers/55520/comments/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Link: 
<http://patches.dpdk.org/api/covers/55520/comments/?format=api&page=1>; rel="first",
<http://patches.dpdk.org/api/covers/55520/comments/?format=api&page=1>; rel="last"
Vary: Accept
[ { "id": 97724, "web_url": "http://patches.dpdk.org/comment/97724/", "msgid": "<9BB6961774997848B5B42BEC655768F81146B485@SHSMSX103.ccr.corp.intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/9BB6961774997848B5B42BEC655768F81146B485@SHSMSX103.ccr.corp.intel.com", "date": "2019-06-28T10:17:42", "subject": "Re: [dpdk-dev] [PATCH v9 0/6] rawdev driver for ntb", "submitter": { "id": 47, "url": "http://patches.dpdk.org/api/people/47/?format=api", "name": "Jingjing Wu", "email": "jingjing.wu@intel.com" }, "content": "series Acked-by: Jingjing Wu <jingjing.wu@intel.com>\n\n> -----Original Message-----\n> From: Li, Xiaoyun\n> Sent: Friday, June 28, 2019 10:54 AM\n> To: Wu, Jingjing <jingjing.wu@intel.com>; Wiles, Keith <keith.wiles@intel.com>; Liang,\n> Cunming <cunming.liang@intel.com>; Maslekar, Omkar <omkar.maslekar@intel.com>\n> Cc: dev@dpdk.org; Li, Xiaoyun <xiaoyun.li@intel.com>\n> Subject: [PATCH v9 0/6] rawdev driver for ntb\n> \n> This patch set adds support for Intel NTB device with Skylake platform.\n> It is a raw device for allowing two hosts to communicate with each other\n> and access the peer memory.\n> \n> This patch set also provides a simple example to transmit a file between\n> two hosts. But since there is no FIFO here, only support file which is\n> no more than 4M. And will add FIFO in the future.\n> \n> v9:\n> * Fixed a typo.\n> * Added default case for PPD parse.\n> \n> v8:\n> * Fixed a coding style issue.\n> * Rebased codes to the newest master branch.\n> \n> v7:\n> * Fixed a typo.\n> * Generic spad registers to be spad_user and the specific spad is\n> * defined by the specific hw.\n> * Refined the codes by replacing with lib functions such as rte_read32.\n> * Rebased the codes to the newest dpdk-next-net-intel branch.\n> \n> v6:\n> * Fixed a typo.\n> \n> v5:\n> * Actual v4. v4 patchset is the same as v3.\n> \n> v4:\n> * Fix compile issues of comparison of array with null pointer.\n> \n> v3:\n> * Fixed compilation issues with target i686.\n> * Renamed communication devices to misc devices in usertool.\n> * Rebased to the newest dpdk-next-net-intel branch.\n> \n> v2:\n> * Replaced ! with NULL check for pointers.\n> * Added ntb_ops valid check before use it.\n> * Replaced RTE_MEMZONE_1GB with RTE_MEMZONE_IOVA_CONTIG in case users do\n> not use 1G hugepage.\n> * Added a timeout for dev_stop handshake in case that the peer stopped\n> abnormally such as crashed while debugging.\n> * Updated docs especailly about how to setup BIOS for skylake.\n> * Fixed not return issue and not free issue in example.\n> * Renamed ntb_devices to communication_devices to be more generic in\n> usertools.\n> * Polish the codes and docs.\n> \n> Xiaoyun Li (6):\n> raw/ntb: introduce ntb rawdev driver\n> raw/ntb: add intel ntb support\n> raw/ntb: add handshake process\n> examples/ntb: enable an example for ntb\n> usertools/dpdk-devbind.py: add support for ntb\n> doc: update docs for ntb driver\n> \n> MAINTAINERS | 9 +\n> config/common_base | 5 +\n> doc/guides/rawdevs/index.rst | 1 +\n> doc/guides/rawdevs/ntb_rawdev.rst | 41 +\n> doc/guides/rel_notes/release_19_08.rst | 15 +\n> doc/guides/sample_app_ug/index.rst | 1 +\n> doc/guides/sample_app_ug/ntb.rst | 47 +\n> drivers/raw/Makefile | 1 +\n> drivers/raw/meson.build | 2 +-\n> drivers/raw/ntb_rawdev/Makefile | 28 +\n> drivers/raw/ntb_rawdev/meson.build | 8 +\n> drivers/raw/ntb_rawdev/ntb_hw_intel.c | 369 ++++++++\n> drivers/raw/ntb_rawdev/ntb_hw_intel.h | 86 ++\n> drivers/raw/ntb_rawdev/ntb_rawdev.c | 839 ++++++++++++++++++\n> drivers/raw/ntb_rawdev/ntb_rawdev.h | 164 ++++\n> .../ntb_rawdev/rte_pmd_ntb_rawdev_version.map | 4 +\n> examples/Makefile | 1 +\n> examples/meson.build | 2 +-\n> examples/ntb/Makefile | 68 ++\n> examples/ntb/meson.build | 16 +\n> examples/ntb/ntb_fwd.c | 377 ++++++++\n> mk/rte.app.mk | 1 +\n> usertools/dpdk-devbind.py | 9 +\n> 23 files changed, 2092 insertions(+), 2 deletions(-)\n> create mode 100644 doc/guides/rawdevs/ntb_rawdev.rst\n> create mode 100644 doc/guides/sample_app_ug/ntb.rst\n> create mode 100644 drivers/raw/ntb_rawdev/Makefile\n> create mode 100644 drivers/raw/ntb_rawdev/meson.build\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_hw_intel.c\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_hw_intel.h\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_rawdev.c\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_rawdev.h\n> create mode 100644 drivers/raw/ntb_rawdev/rte_pmd_ntb_rawdev_version.map\n> create mode 100644 examples/ntb/Makefile\n> create mode 100644 examples/ntb/meson.build\n> create mode 100644 examples/ntb/ntb_fwd.c\n> \n> --\n> 2.17.1", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@dpdk.org", "Delivered-To": "patchwork@dpdk.org", "Received": [ "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id DD4445424;\n\tFri, 28 Jun 2019 12:17:48 +0200 (CEST)", "from mga17.intel.com (mga17.intel.com [192.55.52.151])\n\tby dpdk.org (Postfix) with ESMTP id 6079634F0\n\tfor <dev@dpdk.org>; Fri, 28 Jun 2019 12:17:47 +0200 (CEST)", "from orsmga006.jf.intel.com ([10.7.209.51])\n\tby fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t28 Jun 2019 03:17:46 -0700", "from fmsmsx106.amr.corp.intel.com ([10.18.124.204])\n\tby orsmga006.jf.intel.com with ESMTP; 28 Jun 2019 03:17:46 -0700", "from fmsmsx111.amr.corp.intel.com (10.18.116.5) by\n\tFMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP\n\tServer (TLS) id 14.3.439.0; Fri, 28 Jun 2019 03:17:46 -0700", "from shsmsx108.ccr.corp.intel.com (10.239.4.97) by\n\tfmsmsx111.amr.corp.intel.com (10.18.116.5) with Microsoft SMTP Server\n\t(TLS) id 14.3.439.0; Fri, 28 Jun 2019 03:17:45 -0700", "from shsmsx103.ccr.corp.intel.com ([169.254.4.83]) by\n\tSHSMSX108.ccr.corp.intel.com ([169.254.8.236]) with mapi id\n\t14.03.0439.000; Fri, 28 Jun 2019 18:17:43 +0800" ], "X-Amp-Result": "SKIPPED(no attachment in message)", "X-Amp-File-Uploaded": "False", "X-ExtLoop1": "1", "X-IronPort-AV": "E=Sophos;i=\"5.63,427,1557212400\"; d=\"scan'208\";a=\"167718039\"", "From": "\"Wu, Jingjing\" <jingjing.wu@intel.com>", "To": "\"Li, Xiaoyun\" <xiaoyun.li@intel.com>, \"Wiles, Keith\"\n\t<keith.wiles@intel.com>, \"Liang, Cunming\" <cunming.liang@intel.com>, \n\t\"Maslekar, Omkar\" <omkar.maslekar@intel.com>", "CC": "\"dev@dpdk.org\" <dev@dpdk.org>", "Thread-Topic": "[PATCH v9 0/6] rawdev driver for ntb", "Thread-Index": "AQHVLVzb1OeZxHqiJ0uWDPM6y5Ujwaaw2ayA", "Date": "Fri, 28 Jun 2019 10:17:42 +0000", "Message-ID": "<9BB6961774997848B5B42BEC655768F81146B485@SHSMSX103.ccr.corp.intel.com>", "References": "<20190626071224.4819-1-xiaoyun.li@intel.com>\n\t<20190628025346.31312-1-xiaoyun.li@intel.com>", "In-Reply-To": "<20190628025346.31312-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": "eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZGRlZDU4MWEtMzMyZS00Nzc5LThiMmQtMDg1MGZlMzE4NTEzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiSHJIUXRXUFRPK3h4dk1zVWRWR1RRV002UzJMYUFiTHhPaWxkV01TN3o2bEZEMW1FSHpKZmhkMmRSajFKS05cL2wifQ==", "x-ctpclassification": "CTP_NT", "dlp-product": "dlpe-windows", "dlp-version": "11.2.0.6", "dlp-reaction": "no-action", "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 v9 0/6] rawdev driver 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>,\n\t<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>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null }, { "id": 97946, "web_url": "http://patches.dpdk.org/comment/97946/", "msgid": "<20190702062521.91542-1-xiaoyun.li@intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/20190702062521.91542-1-xiaoyun.li@intel.com", "date": "2019-07-02T06:25:16", "subject": "[dpdk-dev] [PATCH v10 0/5] rawdev driver for ntb", "submitter": { "id": 798, "url": "http://patches.dpdk.org/api/people/798/?format=api", "name": "Li, Xiaoyun", "email": "xiaoyun.li@intel.com" }, "content": "This patch set adds support for Intel NTB device with Skylake platform.\nIt is a raw device for allowing two hosts to communicate with each other\nand access the peer memory.\n\nThis patch set also provides a simple example to transmit a file between\ntwo hosts. But since there is no FIFO here, only support file which is\nno more than 4M. And will add FIFO in the future.\n\nseries Acked-by: Jingjing Wu <jingjing.wu@intel.com>\n\nv10:\n* Updated and refined the release notes in the same patch as the code.\n\nv9:\n* Fixed a typo.\n* Added default case for PPD parse.\n\nv8:\n* Fixed a coding style issue.\n* Rebased codes to the newest master branch.\n\nv7:\n* Fixed a typo.\n* Generic spad registers to be spad_user and the specific spad is\n* defined by the specific hw.\n* Refined the codes by replacing with lib functions such as rte_read32.\n* Rebased the codes to the newest dpdk-next-net-intel branch.\n\nv6:\n* Fixed a typo.\n\nv5:\n* Actual v4. v4 patchset is the same as v3.\n\nv4:\n* Fix compile issues of comparison of array with null pointer.\n\nv3:\n* Fixed compilation issues with target i686.\n* Renamed communication devices to misc devices in usertool.\n* Rebased to the newest dpdk-next-net-intel branch.\n\nv2:\n* Replaced ! with NULL check for pointers.\n* Added ntb_ops valid check before use it.\n* Replaced RTE_MEMZONE_1GB with RTE_MEMZONE_IOVA_CONTIG in case users do\n not use 1G hugepage.\n* Added a timeout for dev_stop handshake in case that the peer stopped\n abnormally such as crashed while debugging.\n* Updated docs especailly about how to setup BIOS for skylake.\n* Fixed not return issue and not free issue in example.\n* Renamed ntb_devices to communication_devices to be more generic in\n usertools.\n* Polish the codes and docs.\n\nXiaoyun Li (5):\n raw/ntb: introduce ntb rawdev driver\n usertools/dpdk-devbind.py: add support for ntb\n raw/ntb: add intel ntb support\n raw/ntb: add handshake process\n examples/ntb: enable an example for ntb\n\n MAINTAINERS | 9 +\n config/common_base | 5 +\n doc/guides/rawdevs/index.rst | 1 +\n doc/guides/rawdevs/ntb_rawdev.rst | 52 ++\n doc/guides/rel_notes/release_19_08.rst | 5 +\n doc/guides/sample_app_ug/index.rst | 1 +\n doc/guides/sample_app_ug/ntb.rst | 47 +\n drivers/raw/Makefile | 1 +\n drivers/raw/meson.build | 2 +-\n drivers/raw/ntb_rawdev/Makefile | 28 +\n drivers/raw/ntb_rawdev/meson.build | 8 +\n drivers/raw/ntb_rawdev/ntb_hw_intel.c | 369 ++++++++\n drivers/raw/ntb_rawdev/ntb_hw_intel.h | 86 ++\n drivers/raw/ntb_rawdev/ntb_rawdev.c | 839 ++++++++++++++++++\n drivers/raw/ntb_rawdev/ntb_rawdev.h | 164 ++++\n .../ntb_rawdev/rte_pmd_ntb_rawdev_version.map | 4 +\n examples/Makefile | 1 +\n examples/meson.build | 2 +-\n examples/ntb/Makefile | 68 ++\n examples/ntb/meson.build | 16 +\n examples/ntb/ntb_fwd.c | 377 ++++++++\n mk/rte.app.mk | 1 +\n usertools/dpdk-devbind.py | 9 +\n 23 files changed, 2093 insertions(+), 2 deletions(-)\n create mode 100644 doc/guides/rawdevs/ntb_rawdev.rst\n create mode 100644 doc/guides/sample_app_ug/ntb.rst\n create mode 100644 drivers/raw/ntb_rawdev/Makefile\n create mode 100644 drivers/raw/ntb_rawdev/meson.build\n create mode 100644 drivers/raw/ntb_rawdev/ntb_hw_intel.c\n create mode 100644 drivers/raw/ntb_rawdev/ntb_hw_intel.h\n create mode 100644 drivers/raw/ntb_rawdev/ntb_rawdev.c\n create mode 100644 drivers/raw/ntb_rawdev/ntb_rawdev.h\n create mode 100644 drivers/raw/ntb_rawdev/rte_pmd_ntb_rawdev_version.map\n create mode 100644 examples/ntb/Makefile\n create mode 100644 examples/ntb/meson.build\n create mode 100644 examples/ntb/ntb_fwd.c", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@dpdk.org", "Delivered-To": "patchwork@dpdk.org", "Received": [ "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 881331B946;\n\tTue, 2 Jul 2019 08:27:25 +0200 (CEST)", "from mga18.intel.com (mga18.intel.com [134.134.136.126])\n\tby dpdk.org (Postfix) with ESMTP id A51965F11\n\tfor <dev@dpdk.org>; Tue, 2 Jul 2019 08:27:23 +0200 (CEST)", "from orsmga001.jf.intel.com ([10.7.209.18])\n\tby orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t01 Jul 2019 23:26:41 -0700", "from dpdk-xiaoyun3.sh.intel.com ([10.67.119.190])\n\tby orsmga001.jf.intel.com with ESMTP; 01 Jul 2019 23:26:39 -0700" ], "X-Amp-Result": "SKIPPED(no attachment in message)", "X-Amp-File-Uploaded": "False", "X-ExtLoop1": "1", "X-IronPort-AV": "E=Sophos;i=\"5.63,442,1557212400\"; d=\"scan'208\";a=\"247161782\"", "From": "Xiaoyun Li <xiaoyun.li@intel.com>", "To": "jingjing.wu@intel.com, keith.wiles@intel.com, cunming.liang@intel.com,\n\tomkar.maslekar@intel.com", "Cc": "dev@dpdk.org,\n\tXiaoyun Li <xiaoyun.li@intel.com>", "Date": "Tue, 2 Jul 2019 14:25:16 +0800", "Message-Id": "<20190702062521.91542-1-xiaoyun.li@intel.com>", "X-Mailer": "git-send-email 2.17.1", "In-Reply-To": "<20190628025346.31312-1-xiaoyun.li@intel.com>", "References": "<20190628025346.31312-1-xiaoyun.li@intel.com>", "Subject": "[dpdk-dev] [PATCH v10 0/5] rawdev driver 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>,\n\t<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>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null }, { "id": 97947, "web_url": "http://patches.dpdk.org/comment/97947/", "msgid": "<20190702141049.GA85660@intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/20190702141049.GA85660@intel.com", "date": "2019-07-02T14:10:49", "subject": "Re: [dpdk-dev] [PATCH v10 0/5] rawdev driver for ntb", "submitter": { "id": 1120, "url": "http://patches.dpdk.org/api/people/1120/?format=api", "name": "Xiaolong Ye", "email": "xiaolong.ye@intel.com" }, "content": "On 07/02, Xiaoyun Li wrote:\n>This patch set adds support for Intel NTB device with Skylake platform.\n>It is a raw device for allowing two hosts to communicate with each other\n>and access the peer memory.\n>\n>This patch set also provides a simple example to transmit a file between\n>two hosts. But since there is no FIFO here, only support file which is\n>no more than 4M. And will add FIFO in the future.\n>\n>series Acked-by: Jingjing Wu <jingjing.wu@intel.com>\n>\n>v10:\n>* Updated and refined the release notes in the same patch as the code.\n>\n>v9:\n>* Fixed a typo.\n>* Added default case for PPD parse.\n>\n>v8:\n>* Fixed a coding style issue.\n>* Rebased codes to the newest master branch.\n>\n>v7:\n>* Fixed a typo.\n>* Generic spad registers to be spad_user and the specific spad is\n>* defined by the specific hw.\n>* Refined the codes by replacing with lib functions such as rte_read32.\n>* Rebased the codes to the newest dpdk-next-net-intel branch.\n>\n>v6:\n>* Fixed a typo.\n>\n>v5:\n>* Actual v4. v4 patchset is the same as v3.\n>\n>v4:\n>* Fix compile issues of comparison of array with null pointer.\n>\n>v3:\n>* Fixed compilation issues with target i686.\n>* Renamed communication devices to misc devices in usertool.\n>* Rebased to the newest dpdk-next-net-intel branch.\n>\n>v2:\n>* Replaced ! with NULL check for pointers.\n>* Added ntb_ops valid check before use it.\n>* Replaced RTE_MEMZONE_1GB with RTE_MEMZONE_IOVA_CONTIG in case users do\n> not use 1G hugepage.\n>* Added a timeout for dev_stop handshake in case that the peer stopped\n> abnormally such as crashed while debugging.\n>* Updated docs especailly about how to setup BIOS for skylake.\n>* Fixed not return issue and not free issue in example.\n>* Renamed ntb_devices to communication_devices to be more generic in\n> usertools.\n>* Polish the codes and docs.\n>\n>Xiaoyun Li (5):\n> raw/ntb: introduce ntb rawdev driver\n> usertools/dpdk-devbind.py: add support for ntb\n> raw/ntb: add intel ntb support\n> raw/ntb: add handshake process\n> examples/ntb: enable an example for ntb\n>\n> MAINTAINERS | 9 +\n> config/common_base | 5 +\n> doc/guides/rawdevs/index.rst | 1 +\n> doc/guides/rawdevs/ntb_rawdev.rst | 52 ++\n> doc/guides/rel_notes/release_19_08.rst | 5 +\n> doc/guides/sample_app_ug/index.rst | 1 +\n> doc/guides/sample_app_ug/ntb.rst | 47 +\n> drivers/raw/Makefile | 1 +\n> drivers/raw/meson.build | 2 +-\n> drivers/raw/ntb_rawdev/Makefile | 28 +\n> drivers/raw/ntb_rawdev/meson.build | 8 +\n> drivers/raw/ntb_rawdev/ntb_hw_intel.c | 369 ++++++++\n> drivers/raw/ntb_rawdev/ntb_hw_intel.h | 86 ++\n> drivers/raw/ntb_rawdev/ntb_rawdev.c | 839 ++++++++++++++++++\n> drivers/raw/ntb_rawdev/ntb_rawdev.h | 164 ++++\n> .../ntb_rawdev/rte_pmd_ntb_rawdev_version.map | 4 +\n> examples/Makefile | 1 +\n> examples/meson.build | 2 +-\n> examples/ntb/Makefile | 68 ++\n> examples/ntb/meson.build | 16 +\n> examples/ntb/ntb_fwd.c | 377 ++++++++\n> mk/rte.app.mk | 1 +\n> usertools/dpdk-devbind.py | 9 +\n> 23 files changed, 2093 insertions(+), 2 deletions(-)\n> create mode 100644 doc/guides/rawdevs/ntb_rawdev.rst\n> create mode 100644 doc/guides/sample_app_ug/ntb.rst\n> create mode 100644 drivers/raw/ntb_rawdev/Makefile\n> create mode 100644 drivers/raw/ntb_rawdev/meson.build\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_hw_intel.c\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_hw_intel.h\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_rawdev.c\n> create mode 100644 drivers/raw/ntb_rawdev/ntb_rawdev.h\n> create mode 100644 drivers/raw/ntb_rawdev/rte_pmd_ntb_rawdev_version.map\n> create mode 100644 examples/ntb/Makefile\n> create mode 100644 examples/ntb/meson.build\n> create mode 100644 examples/ntb/ntb_fwd.c\n>\n\nFor the series, Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>\n\n>-- \n>2.17.1\n>", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@dpdk.org", "Delivered-To": "patchwork@dpdk.org", "Received": [ "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 98CFC5B3C;\n\tTue, 2 Jul 2019 09:29:34 +0200 (CEST)", "from mga14.intel.com (mga14.intel.com [192.55.52.115])\n\tby dpdk.org (Postfix) with ESMTP id C46DF326D\n\tfor <dev@dpdk.org>; Tue, 2 Jul 2019 09:29:32 +0200 (CEST)", "from fmsmga003.fm.intel.com ([10.253.24.29])\n\tby fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t02 Jul 2019 00:29:31 -0700", "from yexl-server.sh.intel.com (HELO localhost) ([10.67.110.186])\n\tby FMSMGA003.fm.intel.com with ESMTP; 02 Jul 2019 00:29:31 -0700" ], "X-Amp-Result": "UNKNOWN", "X-Amp-Original-Verdict": "FILE UNKNOWN", "X-Amp-File-Uploaded": "False", "X-ExtLoop1": "1", "X-IronPort-AV": "E=Sophos;i=\"5.63,442,1557212400\"; d=\"scan'208\";a=\"171698552\"", "Date": "Tue, 2 Jul 2019 22:10:49 +0800", "From": "Ye Xiaolong <xiaolong.ye@intel.com>", "To": "Xiaoyun Li <xiaoyun.li@intel.com>", "Cc": "jingjing.wu@intel.com, keith.wiles@intel.com, cunming.liang@intel.com,\n\tomkar.maslekar@intel.com, dev@dpdk.org", "Message-ID": "<20190702141049.GA85660@intel.com>", "References": "<20190628025346.31312-1-xiaoyun.li@intel.com>\n\t<20190702062521.91542-1-xiaoyun.li@intel.com>", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=us-ascii", "Content-Disposition": "inline", "In-Reply-To": "<20190702062521.91542-1-xiaoyun.li@intel.com>", "User-Agent": "Mutt/1.9.4 (2018-02-28)", "Subject": "Re: [dpdk-dev] [PATCH v10 0/5] rawdev driver 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>,\n\t<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>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null } ]