get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 88314,
    "url": "http://patches.dpdk.org/api/patches/88314/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20210301103532.184983-1-lizh@nvidia.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": "<20210301103532.184983-1-lizh@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20210301103532.184983-1-lizh@nvidia.com",
    "date": "2021-03-01T10:35:28",
    "name": "[RFC,v4,0/4] adds support PPS(packet per second) on meter",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1967,
        "url": "http://patches.dpdk.org/api/people/1967/?format=api",
        "name": "Li Zhang",
        "email": "lizh@nvidia.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20210301103532.184983-1-lizh@nvidia.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/88314/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/88314/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 153D1A054F;\n\tMon,  1 Mar 2021 11:35:41 +0100 (CET)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 8A3F84067B;\n\tMon,  1 Mar 2021 11:35:40 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by mails.dpdk.org (Postfix) with ESMTP id 27E4B4014E\n for <dev@dpdk.org>; Mon,  1 Mar 2021 11:35:39 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n lizh@nvidia.com)\n with SMTP; 1 Mar 2021 12:35:38 +0200",
            "from nvidia.com (c-235-17-1-009.mtl.labs.mlnx [10.235.17.9])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 121AZcTT011605;\n Mon, 1 Mar 2021 12:35:38 +0200"
        ],
        "From": "Li Zhang <lizh@nvidia.com>",
        "To": "dekelp@nvidia.com, orika@nvidia.com, viacheslavo@nvidia.com,\n matan@nvidia.com",
        "Cc": "dev@dpdk.org, thomas@monjalon.net, rasland@nvidia.com,\n mb@smartsharesystems.com, ajit.khaparde@broadcom.com",
        "Date": "Mon,  1 Mar 2021 12:35:28 +0200",
        "Message-Id": "<20210301103532.184983-1-lizh@nvidia.com>",
        "X-Mailer": "git-send-email 2.21.0",
        "In-Reply-To": "<20210125010235.1768333-1-lizh@nvidia.com>",
        "References": "<20210125010235.1768333-1-lizh@nvidia.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [RFC v4 0/4] adds support PPS(packet per second) on meter",
        "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": "Currently the flow Meter algorithms in rte_flow\nonly supports bytes per second(BPS).\nSuch as Single Rate Three Color Marker (srTCM rfc2697)\nThis RFC adds the packet per second definition in\nMeter algorithms structure,\nto support the rte_mtr APIs with type srTCM pps mode.\nThe below structure will be extended:\nrte_mtr_algorithm\nrte_mtr_meter_profile\n\nv4:\n* Fix the wrong commit log.\n\nv3:\n* Redefine the struct name for PPS mode.\n\nv2:\n* Rebase\n\n\nLi Zhang (4):\n  ethdev: add meter PPS profile\n  common/mlx5: add meter mode definition in PRM file\n  net/mlx5: support meter PPS profile\n  app/testpmd: add meter pps mode cmd\n\n app/test-pmd/cmdline.c                        |   4 +\n app/test-pmd/cmdline_mtr.c                    | 105 ++++++++++++++++++\n app/test-pmd/cmdline_mtr.h                    |   1 +\n doc/guides/nics/mlx5.rst                      |   1 +\n .../traffic_metering_and_policing.rst         |   3 +-\n doc/guides/rel_notes/release_20_11.rst        |   5 +\n doc/guides/testpmd_app_ug/testpmd_funcs.rst   |  15 +++\n drivers/common/mlx5/mlx5_prm.h                |   8 ++\n drivers/net/mlx5/mlx5.h                       |  13 ++-\n drivers/net/mlx5/mlx5_flow_aso.c              |  17 ++-\n drivers/net/mlx5/mlx5_flow_meter.c            |  71 +++++++++---\n lib/librte_ethdev/rte_mtr.h                   |  32 ++++++\n 12 files changed, 251 insertions(+), 24 deletions(-)",
    "diff": null,
    "prefixes": [
        "RFC",
        "v4",
        "0/4"
    ]
}