get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 48801,
    "url": "https://patches.dpdk.org/api/patches/48801/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1544773540-89825-1-git-send-email-jia.guo@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": "<1544773540-89825-1-git-send-email-jia.guo@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1544773540-89825-1-git-send-email-jia.guo@intel.com",
    "date": "2018-12-14T07:45:37",
    "name": "[0/3] use a common eal device event for hot-unplug",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 507,
        "url": "https://patches.dpdk.org/api/people/507/?format=api",
        "name": "Guo, Jia",
        "email": "jia.guo@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1544773540-89825-1-git-send-email-jia.guo@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/48801/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/48801/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 2CA821B6D1;\n\tFri, 14 Dec 2018 08:41:32 +0100 (CET)",
            "from mga17.intel.com (mga17.intel.com [192.55.52.151])\n\tby dpdk.org (Postfix) with ESMTP id E9D8D1B613\n\tfor <dev@dpdk.org>; Fri, 14 Dec 2018 08:41:29 +0100 (CET)",
            "from orsmga006.jf.intel.com ([10.7.209.51])\n\tby fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t13 Dec 2018 23:41:28 -0800",
            "from jeffguo-s2600wt2.sh.intel.com (HELO localhost.localdomain)\n\t([10.67.110.10])\n\tby orsmga006.jf.intel.com with ESMTP; 13 Dec 2018 23:41:25 -0800"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.56,352,1539673200\"; d=\"scan'208\";a=\"100641729\"",
        "From": "Jeff Guo <jia.guo@intel.com>",
        "To": "bernard.iremonger@intel.com, wenzhuo.lu@intel.com, shahafs@mellanox.com, \n\tthomas@monjalon.net, matan@mellanox.com",
        "Cc": "ferruh.yigit@intel.com, konstantin.ananyev@intel.com, dev@dpdk.org,\n\tjia.guo@intel.com, stephen@networkplumber.org, gaetan.rivet@6wind.com,\n\tqi.z.zhang@intel.com, arybchenko@solarflare.com,\n\tbruce.richardson@intel.com, shaopeng.he@intel.com,\n\tanatoly.burakov@intel.com",
        "Date": "Fri, 14 Dec 2018 15:45:37 +0800",
        "Message-Id": "<1544773540-89825-1-git-send-email-jia.guo@intel.com>",
        "X-Mailer": "git-send-email 2.7.4",
        "Subject": "[dpdk-dev] [PATCH 0/3] use a common eal device event for hot-unplug",
        "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 set aim to use a common eal device event mechanism to manage\ndevices for hot-unplug whatever device types, so the previous ethdev\nremove event will be deleted and the device detach will be remove from\napp into eal framework.\n\nJeff Guo (3):\n  eal: add --dev-hotplug option\n  ethdev: remove ethdev rmv interrupt\n  testpmd: remove device detach into eal\n\n app/test-pmd/parameters.c                  |  2 --\n app/test-pmd/testpmd.c                     | 41 +++---------------------------\n drivers/bus/pci/pci_common.c               |  7 +++++\n drivers/net/failsafe/failsafe_ether.c      | 12 ++++-----\n drivers/net/failsafe/failsafe_ops.c        |  3 +--\n drivers/net/failsafe/failsafe_private.h    |  6 ++---\n drivers/net/mlx4/mlx4_intr.c               |  1 -\n drivers/net/mlx5/mlx5_ethdev.c             |  7 ++---\n lib/librte_eal/bsdapp/eal/eal.c            | 16 ++++++++++++\n lib/librte_eal/common/eal_common_options.c |  5 ++++\n lib/librte_eal/common/eal_internal_cfg.h   |  1 +\n lib/librte_eal/common/eal_options.h        |  4 ++-\n lib/librte_eal/linuxapp/eal/eal.c          | 16 ++++++++++++\n lib/librte_eal/linuxapp/eal/eal_dev.c      | 16 +++++++++++-\n lib/librte_ethdev/rte_ethdev.h             |  1 -\n 15 files changed, 79 insertions(+), 59 deletions(-)",
    "diff": null,
    "prefixes": [
        "0/3"
    ]
}