get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 25941,
    "url": "http://patches.dpdk.org/api/patches/25941/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20170629083404.1271-4-wei.dai@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": "<20170629083404.1271-4-wei.dai@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20170629083404.1271-4-wei.dai@intel.com",
    "date": "2017-06-29T08:34:03",
    "name": "[dpdk-dev,v3,3/4] net/i40e: add support of reset",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "a8a9e5c65ab9820e5d904de11958d0f63b63388a",
    "submitter": {
        "id": 490,
        "url": "http://patches.dpdk.org/api/people/490/?format=api",
        "name": "Wei Dai",
        "email": "wei.dai@intel.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20170629083404.1271-4-wei.dai@intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/25941/comments/",
    "check": "success",
    "checks": "http://patches.dpdk.org/api/patches/25941/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 [IPv6:::1])\n\tby dpdk.org (Postfix) with ESMTP id 123D6532C;\n\tThu, 29 Jun 2017 10:37:41 +0200 (CEST)",
            "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n\tby dpdk.org (Postfix) with ESMTP id 7ABFC374\n\tfor <dev@dpdk.org>; Thu, 29 Jun 2017 10:37:38 +0200 (CEST)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n\tby fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t29 Jun 2017 01:37:26 -0700",
            "from dw2.bj.intel.com ([172.16.117.107])\n\tby fmsmga001.fm.intel.com with ESMTP; 29 Jun 2017 01:37:25 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos; i=\"5.40,279,1496127600\"; d=\"scan'208\";\n\ta=\"1166044874\"",
        "From": "Wei Dai <wei.dai@intel.com>",
        "To": "thomas@monjalon.net, wenzhuo.lu@intel.com, konstantin.ananyev@intel.com, \n\thelin.zhang@intel.com, jingjing.wu@intel.com, yuan.peng@intel.com",
        "Cc": "dev@dpdk.org,\n\tWei Dai <wei.dai@intel.com>",
        "Date": "Thu, 29 Jun 2017 16:34:03 +0800",
        "Message-Id": "<20170629083404.1271-4-wei.dai@intel.com>",
        "X-Mailer": "git-send-email 2.9.4",
        "In-Reply-To": "<20170629083404.1271-1-wei.dai@intel.com>",
        "References": "<1498572438-25125-1-git-send-email-wei.dai@intel.com>\n\t<20170629083404.1271-1-wei.dai@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v3 3/4] net/i40e: add support of reset",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://dpdk.org/ml/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Reset a NIC by calling dev_uninit() and then dev_init().\nGo through the same way in NIC PCI remove without release\nof ethdev resource and then NIC PCI probe function without\nethdev resource allocation.\n\nSigned-off-by: Wei Dai <wei.dai@intel.com>\n---\n drivers/net/i40e/i40e_ethdev.c    | 16 ++++++++++++++++\n drivers/net/i40e/i40e_ethdev_vf.c | 16 ++++++++++++++++\n 2 files changed, 32 insertions(+)",
    "diff": "diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c\nindex 4ee1113..7694957 100644\n--- a/drivers/net/i40e/i40e_ethdev.c\n+++ b/drivers/net/i40e/i40e_ethdev.c\n@@ -250,6 +250,7 @@ static int i40e_dev_configure(struct rte_eth_dev *dev);\n static int i40e_dev_start(struct rte_eth_dev *dev);\n static void i40e_dev_stop(struct rte_eth_dev *dev);\n static void i40e_dev_close(struct rte_eth_dev *dev);\n+static int  i40e_dev_reset(struct rte_eth_dev *dev);\n static void i40e_dev_promiscuous_enable(struct rte_eth_dev *dev);\n static void i40e_dev_promiscuous_disable(struct rte_eth_dev *dev);\n static void i40e_dev_allmulticast_enable(struct rte_eth_dev *dev);\n@@ -449,6 +450,7 @@ static const struct eth_dev_ops i40e_eth_dev_ops = {\n \t.dev_start                    = i40e_dev_start,\n \t.dev_stop                     = i40e_dev_stop,\n \t.dev_close                    = i40e_dev_close,\n+\t.dev_reset                    = i40e_dev_reset,\n \t.promiscuous_enable           = i40e_dev_promiscuous_enable,\n \t.promiscuous_disable          = i40e_dev_promiscuous_disable,\n \t.allmulticast_enable          = i40e_dev_allmulticast_enable,\n@@ -2135,6 +2137,20 @@ i40e_dev_close(struct rte_eth_dev *dev)\n \tI40E_WRITE_FLUSH(hw);\n }\n \n+static int\n+i40e_dev_reset(struct rte_eth_dev *dev)\n+{\n+\tint ret;\n+\n+\tret = eth_i40e_dev_uninit(dev);\n+\tif (ret)\n+\t\treturn ret;\n+\n+\tret = eth_i40e_dev_init(dev);\n+\n+\treturn ret;\n+}\n+\n static void\n i40e_dev_promiscuous_enable(struct rte_eth_dev *dev)\n {\ndiff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c\nindex 2d5a9b5..bf287a0 100644\n--- a/drivers/net/i40e/i40e_ethdev_vf.c\n+++ b/drivers/net/i40e/i40e_ethdev_vf.c\n@@ -123,6 +123,7 @@ static void i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask);\n static int i40evf_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid,\n \t\t\t\tint on);\n static void i40evf_dev_close(struct rte_eth_dev *dev);\n+static int  i40evf_dev_reset(struct rte_eth_dev *dev);\n static void i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev);\n static void i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev);\n static void i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev);\n@@ -204,6 +205,7 @@ static const struct eth_dev_ops i40evf_eth_dev_ops = {\n \t.xstats_get_names     = i40evf_dev_xstats_get_names,\n \t.xstats_reset         = i40evf_dev_xstats_reset,\n \t.dev_close            = i40evf_dev_close,\n+\t.dev_reset            = i40evf_dev_reset,\n \t.dev_infos_get        = i40evf_dev_info_get,\n \t.dev_supported_ptypes_get = i40e_dev_supported_ptypes_get,\n \t.vlan_filter_set      = i40evf_vlan_filter_set,\n@@ -2347,6 +2349,20 @@ i40evf_dev_close(struct rte_eth_dev *dev)\n }\n \n static int\n+i40evf_dev_reset(struct rte_eth_dev *dev)\n+{\n+\tint ret;\n+\n+\tret = i40evf_dev_uninit(dev);\n+\tif (ret)\n+\t\treturn ret;\n+\n+\tret = i40evf_dev_init(dev);\n+\n+\treturn ret;\n+}\n+\n+static int\n i40evf_get_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)\n {\n \tstruct i40e_vf *vf = I40E_VSI_TO_VF(vsi);\n",
    "prefixes": [
        "dpdk-dev",
        "v3",
        "3/4"
    ]
}