List cover comments

GET /api/covers/54459/comments/?format=api&order=id
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Link: 
<http://patches.dpdk.org/api/covers/54459/comments/?format=api&order=id&page=1>; rel="first",
<http://patches.dpdk.org/api/covers/54459/comments/?format=api&order=id&page=1>; rel="last"
Vary: Accept
[ { "id": 97017, "web_url": "http://patches.dpdk.org/comment/97017/", "msgid": "<20190611082212.55999-1-xiaoyun.li@intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/20190611082212.55999-1-xiaoyun.li@intel.com", "date": "2019-06-11T08:22:06", "subject": "[dpdk-dev] [PATCH 0/6] 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\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 (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 | 8 +\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 | 368 ++++++++\n drivers/raw/ntb_rawdev/ntb_hw_intel.h | 86 ++\n drivers/raw/ntb_rawdev/ntb_rawdev.c | 851 ++++++++++++++++++\n drivers/raw/ntb_rawdev/ntb_rawdev.h | 158 ++++\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 | 387 ++++++++\n mk/rte.app.mk | 1 +\n usertools/dpdk-devbind.py | 9 +\n 23 files changed, 2106 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 94DA91C286;\n\tTue, 11 Jun 2019 10:22:45 +0200 (CEST)", "from mga06.intel.com (mga06.intel.com [134.134.136.31])\n\tby dpdk.org (Postfix) with ESMTP id 6ED061C27A\n\tfor <dev@dpdk.org>; Tue, 11 Jun 2019 10:22:44 +0200 (CEST)", "from orsmga005.jf.intel.com ([10.7.209.41])\n\tby orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t11 Jun 2019 01:22:43 -0700", "from dpdk-xiaoyun3.sh.intel.com ([10.67.119.132])\n\tby orsmga005.jf.intel.com with ESMTP; 11 Jun 2019 01:22:41 -0700" ], "X-Amp-Result": "SKIPPED(no attachment in message)", "X-Amp-File-Uploaded": "False", "X-ExtLoop1": "1", "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, 11 Jun 2019 16:22:06 +0800", "Message-Id": "<20190611082212.55999-1-xiaoyun.li@intel.com>", "X-Mailer": "git-send-email 2.17.1", "In-Reply-To": "<20190606074303.104108-1-xiaoyun.li@intel.com>", "References": "<20190606074303.104108-1-xiaoyun.li@intel.com>", "Subject": "[dpdk-dev] [PATCH 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 } ]