get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 44429,
    "url": "http://patches.dpdk.org/api/patches/44429/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20180907181357.23915-1-jasvinder.singh@intel.com/",
    "project": {
        "id": 1,
        "url": "http://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": "<20180907181357.23915-1-jasvinder.singh@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20180907181357.23915-1-jasvinder.singh@intel.com",
    "date": "2018-09-07T18:13:47",
    "name": "[00/10] net/softnic: implement metering and policing API",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 285,
        "url": "http://patches.dpdk.org/api/people/285/?format=api",
        "name": "Jasvinder Singh",
        "email": "jasvinder.singh@intel.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20180907181357.23915-1-jasvinder.singh@intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/44429/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/44429/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 4F1DE5B2C;\n\tFri,  7 Sep 2018 20:15:07 +0200 (CEST)",
            "from mga05.intel.com (mga05.intel.com [192.55.52.43])\n\tby dpdk.org (Postfix) with ESMTP id 76E7E58CB\n\tfor <dev@dpdk.org>; Fri,  7 Sep 2018 20:15:04 +0200 (CEST)",
            "from fmsmga005.fm.intel.com ([10.253.24.32])\n\tby fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t07 Sep 2018 11:15:02 -0700",
            "from silpixa00381635.ir.intel.com (HELO\n\tsilpixa00381635.ger.corp.intel.com) ([10.237.222.149])\n\tby fmsmga005.fm.intel.com with ESMTP; 07 Sep 2018 11:13:58 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.53,343,1531810800\"; d=\"scan'208\";a=\"260757189\"",
        "From": "Jasvinder Singh <jasvinder.singh@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "cristian.dumitrescu@intel.com",
        "Date": "Fri,  7 Sep 2018 19:13:47 +0100",
        "Message-Id": "<20180907181357.23915-1-jasvinder.singh@intel.com>",
        "X-Mailer": "git-send-email 2.9.3",
        "Subject": "[dpdk-dev] [PATCH 00/10] net/softnic: implement metering and\n\tpolicing API",
        "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 patchset adds the metering and policing API support for the\nsoftnic. The metering and policing action can be enabled through the\nflow rules.\n\nThis series is prepared on top of following patchset;\nhttps://mails.dpdk.org/archives/dev/2018-September/110998.html\n\nJasvinder Singh (10):\n  net/softnic: add metering and policing support\n  net/softnic: add meter profile\n  net/softnic: delete meter profile\n  net/softnic: create meter object\n  net/softnic: destroy meter object\n  net/softnic: update meter profile\n  net/softnic: update dscp table\n  net/softnic: update policer actions\n  net/softnic: meter stats read\n  net/softnic: enable meter action using flow rule\n\n drivers/net/softnic/Makefile                    |   1 +\n drivers/net/softnic/meson.build                 |   1 +\n drivers/net/softnic/rte_eth_softnic.c           |  13 +\n drivers/net/softnic/rte_eth_softnic_flow.c      | 170 ++++++\n drivers/net/softnic/rte_eth_softnic_internals.h |  57 ++\n drivers/net/softnic/rte_eth_softnic_meter.c     | 746 ++++++++++++++++++++++++\n drivers/net/softnic/rte_eth_softnic_pipeline.c  |  13 +\n 7 files changed, 1001 insertions(+)\n create mode 100644 drivers/net/softnic/rte_eth_softnic_meter.c",
    "diff": null,
    "prefixes": [
        "00/10"
    ]
}