get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/98663/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 98663,
    "url": "https://patches.dpdk.org/api/patches/98663/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20210910172737.2561156-1-kevin.laatz@intel.com/",
    "project": {
        "id": 1,
        "url": "https://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<20210910172737.2561156-1-kevin.laatz@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20210910172737.2561156-1-kevin.laatz@intel.com",
    "date": "2021-09-10T17:27:31",
    "name": "[0/6] port ioatfwd app to dmadev",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 921,
        "url": "https://patches.dpdk.org/api/people/921/?format=api",
        "name": "Kevin Laatz",
        "email": "kevin.laatz@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20210910172737.2561156-1-kevin.laatz@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/98663/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/98663/checks/",
    "tags": {},
    "related": [],
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from mails.dpdk.org (mails.dpdk.org [217.70.189.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 099D8A0547;\n\tFri, 10 Sep 2021 19:27:45 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 89E90406B4;\n\tFri, 10 Sep 2021 19:27:44 +0200 (CEST)",
            "from mga02.intel.com (mga02.intel.com [134.134.136.20])\n by mails.dpdk.org (Postfix) with ESMTP id BC6C24067E\n for <dev@dpdk.org>; Fri, 10 Sep 2021 19:27:42 +0200 (CEST)",
            "from fmsmga006.fm.intel.com ([10.253.24.20])\n by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 10 Sep 2021 10:27:41 -0700",
            "from silpixa00401122.ir.intel.com ([10.55.128.10])\n by fmsmga006.fm.intel.com with ESMTP; 10 Sep 2021 10:27:40 -0700"
        ],
        "X-IronPort-AV": [
            "E=McAfee;i=\"6200,9189,10103\"; a=\"208363243\"",
            "E=Sophos;i=\"5.85,283,1624345200\"; d=\"scan'208\";a=\"208363243\"",
            "E=Sophos;i=\"5.85,283,1624345200\"; d=\"scan'208\";a=\"694959511\""
        ],
        "X-ExtLoop1": "1",
        "From": "Kevin Laatz <kevin.laatz@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "bruce.richardson@intel.com, fengchengwen@huawei.com,\n conor.walsh@intel.com,\n Kevin Laatz <kevin.laatz@intel.com>",
        "Date": "Fri, 10 Sep 2021 17:27:31 +0000",
        "Message-Id": "<20210910172737.2561156-1-kevin.laatz@intel.com>",
        "X-Mailer": "git-send-email 2.30.2",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH 0/6] port ioatfwd app to dmadev",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.29",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <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 <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "This patchset first adds some additional command line options to the\nexisting ioatfwd application to enhance usability.\n\nThe last 3 patches of this set then port the ioatfwd application to use the\ndmadev library APIs instead of the IOAT rawdev APIs. Following the port,\nall variables etc are renamed to be more appropriate for using with the\nDMAdev library. Lastly, the application itself is renamed to \"dmafwd\".\n\nDepends-on: series-18738 (\"support dmadev\")\n\nKevin Laatz (3):\n  examples/ioat: port application to dmadev APIs\n  examples/ioat: update naming to match change to dmadev\n  examples/ioat: rename application to dmafwd\n\nKonstantin Ananyev (3):\n  examples/ioat: always use same lcore for both DMA requests enqueue and\n    dequeue\n  examples/ioat: add cmd-line option to control DMA batch size\n  examples/ioat: add cmd line option to control max frame size\n\n .../sample_app_ug/{ioat.rst => dma.rst}       | 114 ++--\n doc/guides/sample_app_ug/index.rst            |   2 +-\n doc/guides/sample_app_ug/intro.rst            |   4 +-\n examples/{ioat => dma}/Makefile               |   4 +-\n examples/{ioat/ioatfwd.c => dma/dmafwd.c}     | 597 +++++++++---------\n examples/{ioat => dma}/meson.build            |  10 +-\n examples/meson.build                          |   2 +-\n 7 files changed, 381 insertions(+), 352 deletions(-)\n rename doc/guides/sample_app_ug/{ioat.rst => dma.rst} (73%)\n rename examples/{ioat => dma}/Makefile (97%)\n rename examples/{ioat/ioatfwd.c => dma/dmafwd.c} (62%)\n rename examples/{ioat => dma}/meson.build (63%)",
    "diff": null,
    "prefixes": [
        "0/6"
    ]
}