get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 53824,
    "url": "http://patches.dpdk.org/api/patches/53824/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20190529154132.49955-3-bruce.richardson@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": "<20190529154132.49955-3-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190529154132.49955-3-bruce.richardson@intel.com",
    "date": "2019-05-29T15:41:30",
    "name": "[2/4] config/arm: fix missing define for arm platforms",
    "commit_ref": null,
    "pull_url": null,
    "state": "rejected",
    "archived": true,
    "hash": "2d2be53ce4289bf872c850062ed8dc63143ff1e1",
    "submitter": {
        "id": 20,
        "url": "http://patches.dpdk.org/api/people/20/?format=api",
        "name": "Bruce Richardson",
        "email": "bruce.richardson@intel.com"
    },
    "delegate": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/users/1/?format=api",
        "username": "tmonjalo",
        "first_name": "Thomas",
        "last_name": "Monjalon",
        "email": "thomas@monjalon.net"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20190529154132.49955-3-bruce.richardson@intel.com/mbox/",
    "series": [
        {
            "id": 4811,
            "url": "http://patches.dpdk.org/api/series/4811/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4811",
            "date": "2019-05-29T15:41:28",
            "name": "Enhance CPU flag support",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/4811/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/patches/53824/comments/",
    "check": "fail",
    "checks": "http://patches.dpdk.org/api/patches/53824/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 AACB91B9B5;\n\tWed, 29 May 2019 17:41:48 +0200 (CEST)",
            "from mga12.intel.com (mga12.intel.com [192.55.52.136])\n\tby dpdk.org (Postfix) with ESMTP id 0FD751B9A8;\n\tWed, 29 May 2019 17:41:45 +0200 (CEST)",
            "from fmsmga003.fm.intel.com ([10.253.24.29])\n\tby fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t29 May 2019 08:41:44 -0700",
            "from silpixa00399126.ir.intel.com (HELO\n\tsilpixa00399126.ger.corp.intel.com) ([10.237.223.2])\n\tby FMSMGA003.fm.intel.com with ESMTP; 29 May 2019 08:41:44 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Bruce Richardson <bruce.richardson@intel.com>,\n\tstable@dpdk.org",
        "Date": "Wed, 29 May 2019 16:41:30 +0100",
        "Message-Id": "<20190529154132.49955-3-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 2.21.0",
        "In-Reply-To": "<20190529154132.49955-1-bruce.richardson@intel.com>",
        "References": "<20190529154132.49955-1-bruce.richardson@intel.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH 2/4] config/arm: fix missing define for arm\n\tplatforms",
        "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": "The RTE_ARCH macro was defined for all platforms when using make, but was\nonly defined for x86 and ppc platforms when using meson. Fix this omission.\n\nFixes: b1d48c41189a (\"build: support ARM with meson\")\nCc: stable@dpdk.org\n\nSigned-off-by: Bruce Richardson <bruce.richardson@intel.com>\n---\n config/arm/meson.build | 2 ++\n 1 file changed, 2 insertions(+)",
    "diff": "diff --git a/config/arm/meson.build b/config/arm/meson.build\nindex 7fa6ed310..a4eb1fc50 100644\n--- a/config/arm/meson.build\n+++ b/config/arm/meson.build\n@@ -113,6 +113,7 @@ dpdk_conf.set('RTE_FORCE_INTRINSICS', 1)\n \n if not dpdk_conf.get('RTE_ARCH_64')\n \tdpdk_conf.set('RTE_CACHE_LINE_SIZE', 64)\n+\tdpdk_conf.set_quoted('RTE_ARCH', 'arm')\n \tdpdk_conf.set('RTE_ARCH_ARM', 1)\n \tdpdk_conf.set('RTE_ARCH_ARMv7', 1)\n \t# the minimum architecture supported, armv7-a, needs the following,\n@@ -120,6 +121,7 @@ if not dpdk_conf.get('RTE_ARCH_64')\n \tmachine_args += '-mfpu=neon'\n else\n \tdpdk_conf.set('RTE_CACHE_LINE_SIZE', 128)\n+\tdpdk_conf.set_quoted('RTE_ARCH', 'arm64')\n \tdpdk_conf.set('RTE_ARCH_ARM64', 1)\n \n \tmachine = []\n",
    "prefixes": [
        "2/4"
    ]
}