get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 78970,
    "url": "http://patchwork.dpdk.org/api/1.0/patches/78970/?format=api",
    "project": {
        "id": 1,
        "url": "http://patchwork.dpdk.org/api/1.0/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"
    },
    "msgid": "<20200928065541.7520-1-stevex.yang@intel.com>",
    "date": "2020-09-28T06:55:36",
    "name": "[v4,0/5] fix default max mtu size when device configured",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1883,
        "url": "http://patchwork.dpdk.org/api/1.0/people/1883/?format=api",
        "name": "Steve Yang",
        "email": "stevex.yang@intel.com"
    },
    "delegate": null,
    "mbox": "http://patchwork.dpdk.org/project/dpdk/patch/20200928065541.7520-1-stevex.yang@intel.com/mbox/",
    "series": [],
    "check": "pending",
    "checks": "http://patchwork.dpdk.org/api/patches/78970/checks/",
    "tags": {},
    "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 1D526A04C0;\n\tMon, 28 Sep 2020 09:07:10 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id D66971C119;\n\tMon, 28 Sep 2020 09:07:07 +0200 (CEST)",
            "from mga17.intel.com (mga17.intel.com [192.55.52.151])\n by dpdk.org (Postfix) with ESMTP id E9B951C0D2\n for <dev@dpdk.org>; Mon, 28 Sep 2020 09:07:05 +0200 (CEST)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 28 Sep 2020 00:07:01 -0700",
            "from intel-npg-odc-srv01.cd.intel.com ([10.240.178.136])\n by fmsmga001.fm.intel.com with ESMTP; 28 Sep 2020 00:06:56 -0700"
        ],
        "IronPort-SDR": [
            "\n d+CwP+DKB3GFyoTVoP5qXBElsXwoxCv8oW8igNSX5ViZBrJyvucgtwiJrwVhOBnZsubBwOAvK1\n ARDUYWOVCpPA==",
            "\n RYdQzdQ3xHG8u9oIELeTLUeu8lUyHraJKxV+E3KfHhj+RYBAosK5vaZWLTE6SNuxW5Kwa2oH5A\n 9VveSBVAtX5A=="
        ],
        "X-IronPort-AV": [
            "E=McAfee;i=\"6000,8403,9757\"; a=\"141966816\"",
            "E=Sophos;i=\"5.77,313,1596524400\"; d=\"scan'208\";a=\"141966816\"",
            "E=Sophos;i=\"5.77,313,1596524400\"; d=\"scan'208\";a=\"414895721\""
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "From": "SteveX Yang <stevex.yang@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "wei.zhao1@intel.com, jia.guo@intel.com, qiming.yang@intel.com,\n qi.z.zhang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com,\n konstantin.ananyev@intel.com, SteveX Yang <stevex.yang@intel.com>",
        "Date": "Mon, 28 Sep 2020 06:55:36 +0000",
        "Message-Id": "<20200928065541.7520-1-stevex.yang@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": "<20200923040909.73418-1-stevex.yang@intel.com>",
        "References": "<20200923040909.73418-1-stevex.yang@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v4 0/5] fix default max mtu size when device\n\tconfigured",
        "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": "testpmd will initialize default max packet length to 1518 which does't\ninclude vlan tag size in ether overheader. Once, send the max mtu length\npacket with vlan tag, the max packet length will exceed 1518 that will\ncause packets dropped directly from NIC hw side.\n\nconfigure the correct default max packet size in dev_config ops.\n\nv4:\n * add the adjust condition for max_rx_pkt_len;\nv3:\n * change the i40evf relative code;\nv2:\n * change the max_rx_pkt_len via mtu_set ops;\n\nSteveX Yang (5):\n  net/e1000: fix max mtu size packets with vlan tag cannot be received\n    by default\n  net/igc: fix max mtu size packets with vlan tag cannot be received by\n    default\n  net/ice: fix max mtu size packets with vlan tag cannot be received by\n    default\n  net/i40e: fix max mtu size packets with vlan tag cannot be received by\n    default\n  net/iavf: fix max mtu size packets with vlan tag cannot be received by\n    default\n\n drivers/net/e1000/em_ethdev.c     | 12 ++++++++++++\n drivers/net/i40e/i40e_ethdev.c    | 11 +++++++++++\n drivers/net/i40e/i40e_ethdev_vf.c | 13 ++++++++++++-\n drivers/net/iavf/iavf_ethdev.c    | 12 ++++++++++++\n drivers/net/ice/ice_ethdev.c      | 11 +++++++++++\n drivers/net/igc/igc_ethdev.c      | 13 ++++++++++++-\n 6 files changed, 70 insertions(+), 2 deletions(-)",
    "diff": null,
    "prefixes": [
        "v4",
        "0/5"
    ]
}