get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 61350,
    "url": "https://patches.dpdk.org/api/patches/61350/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20191017160454.14518-1-yahui.cao@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": "<20191017160454.14518-1-yahui.cao@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20191017160454.14518-1-yahui.cao@intel.com",
    "date": "2019-10-17T16:04:45",
    "name": "[v6,0/9] net/ice: add ice Flow Director driver",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1176,
        "url": "https://patches.dpdk.org/api/people/1176/?format=api",
        "name": "Cao, Yahui",
        "email": "yahui.cao@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20191017160454.14518-1-yahui.cao@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/61350/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/61350/checks/",
    "tags": {},
    "related": [],
    "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 79C031E888;\n\tThu, 17 Oct 2019 10:22:32 +0200 (CEST)",
            "from mga14.intel.com (mga14.intel.com [192.55.52.115])\n\tby dpdk.org (Postfix) with ESMTP id 5EE4B1E886\n\tfor <dev@dpdk.org>; Thu, 17 Oct 2019 10:22:30 +0200 (CEST)",
            "from orsmga008.jf.intel.com ([10.7.209.65])\n\tby fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t17 Oct 2019 01:22:30 -0700",
            "from dpdk-yahui-skylake.sh.intel.com ([10.67.119.16])\n\tby orsmga008.jf.intel.com with ESMTP; 17 Oct 2019 01:22:28 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.67,307,1566889200\"; d=\"scan'208\";a=\"189949953\"",
        "From": "Yahui Cao <yahui.cao@intel.com>",
        "To": "Qiming Yang <qiming.yang@intel.com>,\n\tWenzhuo Lu <wenzhuo.lu@intel.com>",
        "Cc": "dev@dpdk.org, Qi Zhang <qi.z.zhang@intel.com>,\n\tXiaolong Ye <xiaolong.ye@intel.com>,\n\tBeilei Xing <beilei.xing@intel.com>, Yahui Cao <yahui.cao@intel.com>",
        "Date": "Fri, 18 Oct 2019 00:04:45 +0800",
        "Message-Id": "<20191017160454.14518-1-yahui.cao@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": "<20190930114547.74803-1-yahui.cao@intel.com>",
        "References": "<20190930114547.74803-1-yahui.cao@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v6 0/9] net/ice: add ice Flow Director driver",
        "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>"
    },
    "content": "This patch series adds Flow Director support for Intel Ethernet\nController E810 series using RTE_FLOW\n\n- Patch 01-02 are FDIR init,teardown and configuration\n- Remaining patches are FDIR RTE_FLOW enablement\n\n---\nv6:\n* Fix build error on different platform\n\nv5:\n* Add GTPU rule support\n* Fix tunnel profile conflict issue\n* Update filter counter \n\nv4:\n* Remove rte_wmb.\n* Update input set mapping table.\n* Remove all created profiles during teardown\n* Fix tunnel rule duplication detection failure\n* Change function name\n\nv3:\n* Get flow id in flexible descriptor\n* Add vxlan tunnel rule support\n\nv2:\n* Move to flexible descriptor.\n* Distinguish tunnel and non-tunnel rule.\n* Add uninit function for fdir engine.\n* Fix coding style.\n* Change patch organization.\n* Add release notes.\n\nBeilei Xing (2):\n  net/ice: enable flow director engine\n  net/ice: configure HW FDIR rule\n\nYahui Cao (7):\n  net/ice: add FDIR create and destroy\n  net/ice: enable FDIR queue group\n  net/ice: add FDIR counter resource init/release\n  net/ice: add FDIR counter support\n  net/ice: reject duplicate flow for FDIR\n  net/ice: add FDIR vxlan tunnel support\n  net/ice: add FDIR GTPU tunnel support\n\n doc/guides/rel_notes/release_19_11.rst |    1 +\n drivers/net/ice/Makefile               |    1 +\n drivers/net/ice/ice_ethdev.c           |  107 +-\n drivers/net/ice/ice_ethdev.h           |   96 ++\n drivers/net/ice/ice_fdir_filter.c      | 1792 ++++++++++++++++++++++++\n drivers/net/ice/ice_rxtx.c             |  403 ++++++\n drivers/net/ice/ice_rxtx.h             |    9 +\n drivers/net/ice/meson.build            |    3 +-\n 8 files changed, 2392 insertions(+), 20 deletions(-)\n create mode 100644 drivers/net/ice/ice_fdir_filter.c",
    "diff": null,
    "prefixes": [
        "v6",
        "0/9"
    ]
}