Patch Detail
Show a patch.
GET /api/1.1/patches/1362/?format=api
{ "id": 1362, "url": "https://patchwork.libcamera.org/api/1.1/patches/1362/?format=api", "web_url": "https://patchwork.libcamera.org/patch/1362/", "project": { "id": 1, "url": "https://patchwork.libcamera.org/api/1.1/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-2-paul.elder@ideasonboard.com>", "date": "2019-06-05T22:18:08", "name": "[libcamera-devel,RFC,01/10] libcamera: ipa_module_info: remove cplusplus guards", "commit_ref": null, "pull_url": null, "state": "superseded", "archived": false, "hash": "705448c66aac5d2b09ac0769e1493e54ba942fb2", "submitter": { "id": 17, "url": "https://patchwork.libcamera.org/api/1.1/people/17/?format=api", "name": "Paul Elder", "email": "paul.elder@ideasonboard.com" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/1362/mbox/", "series": [ { "id": 339, "url": "https://patchwork.libcamera.org/api/1.1/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/1362/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/1362/checks/", "tags": {}, "headers": { "Return-Path": "<paul.elder@ideasonboard.com>", "Received": [ "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id A75FA63581\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 6 Jun 2019 00:18:28 +0200 (CEST)", "from localhost.localdomain (unknown [96.44.9.117])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 0305E2D1;\n\tThu, 6 Jun 2019 00:18:27 +0200 (CEST)" ], "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1559773108;\n\tbh=DivdmcAJO1wAnWb4pm5wgAFaMrvdU91kw1hjFJ2PgTo=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=ACszzDkGIf/hN6ho76txNuNkBK7ZEsqDAIiUNwt0RQu/SzaKsMKLVSe3gWcFbujdM\n\tHlJNMi+akgzCVR/Pb8IBJ6YBNvTqiieF0OtuDQK5BcI2tYmmKKUkS6qkCFR0vgZCBy\n\t4PsS9/G5V8JuG/Kcxkncu+JPNXQIfsPo0/35QToI=", "From": "Paul Elder <paul.elder@ideasonboard.com>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Wed, 5 Jun 2019 18:18:08 -0400", "Message-Id": "<20190605221817.966-2-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 01/10] libcamera: ipa_module_info:\n\tremove cplusplus guards", "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:28 -0000" }, "content": "IPA modules must be implemented in C++, which means we no longer need\n__cplusplus guards, so remove them.\n\nSigned-off-by: Paul Elder <paul.elder@ideasonboard.com>\n---\n include/libcamera/ipa/ipa_module_info.h | 8 --------\n 1 file changed, 8 deletions(-)", "diff": "diff --git a/include/libcamera/ipa/ipa_module_info.h b/include/libcamera/ipa/ipa_module_info.h\nindex 803b5d3..585f753 100644\n--- a/include/libcamera/ipa/ipa_module_info.h\n+++ b/include/libcamera/ipa/ipa_module_info.h\n@@ -11,9 +11,7 @@\n \n #define IPA_MODULE_API_VERSION 1\n \n-#ifdef __cplusplus\n namespace libcamera {\n-#endif\n \n struct IPAModuleInfo {\n \tint moduleAPIVersion;\n@@ -22,16 +20,10 @@ struct IPAModuleInfo {\n \tchar name[256];\n } __attribute__((packed));\n \n-#ifdef __cplusplus\n extern \"C\" {\n-#endif\n extern const struct IPAModuleInfo ipaModuleInfo;\n-#ifdef __cplusplus\n };\n-#endif\n \n-#ifdef __cplusplus\n }; /* namespace libcamera */\n-#endif\n \n #endif /* __LIBCAMERA_IPA_MODULE_INFO_H__ */\n", "prefixes": [ "libcamera-devel", "RFC", "01/10" ] }