Show a patch.

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

{
    "id": 1365,
    "url": "https://patchwork.libcamera.org/api/patches/1365/?format=api",
    "web_url": "https://patchwork.libcamera.org/patch/1365/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/projects/1/?format=api",
        "name": "libcamera",
        "link_name": "libcamera",
        "list_id": "libcamera_core",
        "list_email": "libcamera-devel@lists.libcamera.org",
        "web_url": "",
        "scm_url": "",
        "webscm_url": ""
    },
    "msgid": "<20190605221817.966-5-paul.elder@ideasonboard.com>",
    "date": "2019-06-05T22:18:11",
    "name": "[libcamera-devel,RFC,04/10] libcamera: ipa_interface: add init for shims",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": false,
    "hash": "6f9e280936bcc5637d295d8bb6ad6350c52f3363",
    "submitter": {
        "id": 17,
        "url": "https://patchwork.libcamera.org/api/people/17/?format=api",
        "name": "Paul Elder",
        "email": "paul.elder@ideasonboard.com"
    },
    "delegate": null,
    "mbox": "https://patchwork.libcamera.org/patch/1365/mbox/",
    "series": [
        {
            "id": 339,
            "url": "https://patchwork.libcamera.org/api/series/339/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=339",
            "date": "2019-06-05T22:18:07",
            "name": "Add IPA process isolation",
            "version": 1,
            "mbox": "https://patchwork.libcamera.org/series/339/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/patches/1365/comments/",
    "check": "pending",
    "checks": "https://patchwork.libcamera.org/api/patches/1365/checks/",
    "tags": {},
    "headers": {
        "Return-Path": "<paul.elder@ideasonboard.com>",
        "Received": [
            "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 74A1864B8F\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu,  6 Jun 2019 00:18:31 +0200 (CEST)",
            "from localhost.localdomain (unknown [96.44.9.117])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 3B1492D1;\n\tThu,  6 Jun 2019 00:18:30 +0200 (CEST)"
        ],
        "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1559773110;\n\tbh=7NmTwFIAJeS3Ymgk6NtzFkRL8N3ccbfAojEQgkv0Hlc=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=oWDGPXQz9u+esMwIyTTPvxhkfmn0YVaZkD2Co0Dh60bA4FHGPCvBqc4OLwwxWoegU\n\tIZkK6X61G7Y7sJx5SPBonGmN10bxTXn3aPYjnhK9K7PStIsTsCXXQXEw9/Wh0TPZmz\n\td+5qQuWHLNKan9FeAmwqYyjvwPNnq3K9LMmS+a18=",
        "From": "Paul Elder <paul.elder@ideasonboard.com>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Wed,  5 Jun 2019 18:18:11 -0400",
        "Message-Id": "<20190605221817.966-5-paul.elder@ideasonboard.com>",
        "X-Mailer": "git-send-email 2.20.1",
        "In-Reply-To": "<20190605221817.966-1-paul.elder@ideasonboard.com>",
        "References": "<20190605221817.966-1-paul.elder@ideasonboard.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [RFC PATCH 04/10] libcamera: ipa_interface: add\n\tinit for shims",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.23",
        "Precedence": "list",
        "List-Id": "<libcamera-devel.lists.libcamera.org>",
        "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>",
        "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>",
        "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>",
        "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>",
        "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>",
        "X-List-Received-Date": "Wed, 05 Jun 2019 22:18:32 -0000"
    },
    "content": "Add a function to IPAInterface for shims to use to initialize the IPA\nmodule that it will wrap around.\n\nSigned-off-by: Paul Elder <paul.elder@ideasonboard.com>\n---\n include/libcamera/ipa/ipa_interface.h | 1 +\n 1 file changed, 1 insertion(+)",
    "diff": "diff --git a/include/libcamera/ipa/ipa_interface.h b/include/libcamera/ipa/ipa_interface.h\nindex 2c5eb1f..fd779d2 100644\n--- a/include/libcamera/ipa/ipa_interface.h\n+++ b/include/libcamera/ipa/ipa_interface.h\n@@ -15,6 +15,7 @@ public:\n \tvirtual ~IPAInterface() {}\n \n \tvirtual int init() = 0;\n+\tvirtual int init(const char *path) { return 0; };\n };\n \n } /* namespace libcamera */\n",
    "prefixes": [
        "libcamera-devel",
        "RFC",
        "04/10"
    ]
}