get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 73275,
    "url": "http://patches.dpdk.org/api/patches/73275/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1594057868-18724-1-git-send-email-jiaweiw@mellanox.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": "<1594057868-18724-1-git-send-email-jiaweiw@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1594057868-18724-1-git-send-email-jiaweiw@mellanox.com",
    "date": "2020-07-06T17:51:01",
    "name": "[v3,0/7] support the flow-based traffic sampling",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1648,
        "url": "http://patches.dpdk.org/api/people/1648/?format=api",
        "name": "Jiawei Wang",
        "email": "jiaweiw@mellanox.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1594057868-18724-1-git-send-email-jiaweiw@mellanox.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/73275/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/73275/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 dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 14566A00C5;\n\tMon,  6 Jul 2020 19:53:52 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 82F9E1D96D;\n\tMon,  6 Jul 2020 19:53:51 +0200 (CEST)",
            "from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130])\n by dpdk.org (Postfix) with ESMTP id 3F4EE1D96D\n for <dev@dpdk.org>; Mon,  6 Jul 2020 19:53:50 +0200 (CEST)"
        ],
        "From": "Jiawei Wang <jiaweiw@mellanox.com>",
        "To": "orika@mellanox.com,\n\tviacheslavo@mellanox.com,\n\tmatan@mellanox.com",
        "Cc": "dev@dpdk.org, thomas@monjalon.net, rasland@mellanox.com,\n ian.stokes@intel.com, fbl@redhat.com, jiaweiw@mellanox.com",
        "Date": "Mon,  6 Jul 2020 20:51:01 +0300",
        "Message-Id": "<1594057868-18724-1-git-send-email-jiaweiw@mellanox.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1593715390-83047-1-git-send-email-jiaweiw@mellanox.com>",
        "References": "<1593715390-83047-1-git-send-email-jiaweiw@mellanox.com>",
        "Subject": "[dpdk-dev] [PATCH v3 0/7] support the flow-based traffic sampling",
        "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 <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 patch set implement the flow sampling for mlx5 driver.\n\nThe solution is introduced a new rte_flow action that will sample the incoming traffic and send a duplicated traffic with the specified ratio to the application, while the original packet will continue to the target destination.\n\nIf the sample ratio value be set to 1, means that the packets would be completely mirrored. The sample packet can be assigned with different set of actions from the original packet.\n\nMLX5 PMD driver will be responsible for validate and translate the sample action while creating a flow.\n\nv3:\n* Remove 'const' of ratio field.\n* Update description and commit messages.\n\nv2:\n* Rebase patches based on the latest code.\n* Update rte_flow and release documents.\n* Fix the compile error.\n* Removed unnecessary change in [PATCH 7/8] net/mlx5: update the metadata register c0 support since FDB will use 5-tuple to do match.\n* Update changes based on the comments.\n\nJiawei Wang (7):\n  ethdev: introduce sample action for rte flow\n  common/mlx5: glue for sample action\n  common/mlx5: query sampler object capability via DevX\n  net/mlx5: add the validate sample action\n  net/mlx5: split sample flow into two sub flows\n  net/mlx5: update translate function for sample action\n  app/testpmd: add testpmd command for sample action\n\n app/test-pmd/cmdline_flow.c            | 285 ++++++++++++++-\n doc/guides/prog_guide/rte_flow.rst     |  25 ++\n doc/guides/rel_notes/release_20_08.rst |   6 +\n drivers/common/mlx5/Makefile           |   5 +\n drivers/common/mlx5/linux/meson.build  |   2 +\n drivers/common/mlx5/linux/mlx5_glue.c  |  15 +\n drivers/common/mlx5/linux/mlx5_glue.h  |  12 +\n drivers/common/mlx5/mlx5_devx_cmds.c   |  27 ++\n drivers/common/mlx5/mlx5_devx_cmds.h   |   1 +\n drivers/common/mlx5/mlx5_prm.h         |  51 +++\n drivers/net/mlx5/linux/mlx5_os.c       |  14 +\n drivers/net/mlx5/mlx5.c                |  11 +\n drivers/net/mlx5/mlx5.h                |   4 +\n drivers/net/mlx5/mlx5_flow.c           | 274 +++++++++++++-\n drivers/net/mlx5/mlx5_flow.h           |  51 ++-\n drivers/net/mlx5/mlx5_flow_dv.c        | 627 ++++++++++++++++++++++++++++++++-\n lib/librte_ethdev/rte_flow.c           |   1 +\n lib/librte_ethdev/rte_flow.h           |  30 ++\n 18 files changed, 1406 insertions(+), 35 deletions(-)",
    "diff": null,
    "prefixes": [
        "v3",
        "0/7"
    ]
}