get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 59815,
    "url": "https://patches.dpdk.org/api/patches/59815/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20190926073008.46653-1-chenxux.di@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": "<20190926073008.46653-1-chenxux.di@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190926073008.46653-1-chenxux.di@intel.com",
    "date": "2019-09-26T07:30:03",
    "name": "[v5,0/5] drivers/net: release port upon close",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1409,
        "url": "https://patches.dpdk.org/api/people/1409/?format=api",
        "name": "Chenxu Di",
        "email": "chenxux.di@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20190926073008.46653-1-chenxux.di@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/59815/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/59815/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 523531BEDE;\n\tThu, 26 Sep 2019 10:25:14 +0200 (CEST)",
            "from mga18.intel.com (mga18.intel.com [134.134.136.126])\n\tby dpdk.org (Postfix) with ESMTP id ABE851BED5\n\tfor <dev@dpdk.org>; Thu, 26 Sep 2019 10:25:12 +0200 (CEST)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n\tby orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t26 Sep 2019 01:25:11 -0700",
            "from intel.sh.intel.com ([10.239.255.149])\n\tby fmsmga001.fm.intel.com with ESMTP; 26 Sep 2019 01:25:10 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.64,551,1559545200\"; d=\"scan'208\";a=\"203809465\"",
        "From": "Di ChenxuX <chenxux.di@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "qiming.yang@intel.com,\n\tDi ChenxuX <chenxux.di@intel.com>",
        "Date": "Thu, 26 Sep 2019 07:30:03 +0000",
        "Message-Id": "<20190926073008.46653-1-chenxux.di@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": [
            "<20190827050142.16010-1-chenxux.di@intel.com>",
            "<20190827050142.16010-1-chenxux.di@intel.com>"
        ],
        "References": [
            "<20190827050142.16010-1-chenxux.di@intel.com>",
            "<20190827050142.16010-1-chenxux.di@intel.com>"
        ],
        "Subject": "[dpdk-dev] [PATCH v5 0/5] drivers/net: release port upon close",
        "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": "Set RTE_ETH_DEV_CLOSE_REMOVE upon probe so all the private resources\n for the port can be freed by rte_eth_dev_close().\nThis patch cover all the intel drivers.\n\n---\nV5 changes:\n  Added code in em_ethdev.c.\n  Separated the release note, each patch has its own note. \nV4 changes:\n  Removed adaper stopped flag in function ice_dev_init.\nV3 changes:\n  Removed adapter closed flag in driver e1000, fm10k, ice, ixgbe.\nV2 changes:\n  Separated to 5 patches, each patch only change one driver.\n  Added resource release in dev_close.\n\nDi ChenxuX (5):\n  net/e1000: release port upon close\n  net/fm10k: release port upon close\n  net/i40e: release port upon close\n  net/ice: release port upon close\n  net/ixgbe: release port upon close\n\n doc/guides/rel_notes/release_19_11.rst |  18 +++\n drivers/net/e1000/em_ethdev.c          |  33 ++---\n drivers/net/e1000/igb_ethdev.c         | 144 ++++++++++-----------\n drivers/net/fm10k/fm10k_ethdev.c       | 100 ++++++++-------\n drivers/net/i40e/i40e_ethdev.c         | 128 +++++++++----------\n drivers/net/i40e/i40e_ethdev_vf.c      |  25 ++--\n drivers/net/ice/ice_ethdev.c           |  30 +++--\n drivers/net/ixgbe/ixgbe_ethdev.c       | 167 +++++++++++++------------\n 8 files changed, 335 insertions(+), 310 deletions(-)",
    "diff": null,
    "prefixes": [
        "v5",
        "0/5"
    ]
}