Patch Detail
get:
Show a patch.
patch:
Update a patch.
put:
Update a patch.
GET /api/patches/807006/?format=api
{ "id": 807006, "url": "http://patchwork.ozlabs.org/api/patches/807006/?format=api", "web_url": "http://patchwork.ozlabs.org/project/netdev/patch/20170829091417.GA9481@kroah.com/", "project": { "id": 7, "url": "http://patchwork.ozlabs.org/api/projects/7/?format=api", "name": "Linux network development", "link_name": "netdev", "list_id": "netdev.vger.kernel.org", "list_email": "netdev@vger.kernel.org", "web_url": null, "scm_url": null, "webscm_url": null, "list_archive_url": "", "list_archive_url_format": "", "commit_url_format": "" }, "msgid": "<20170829091417.GA9481@kroah.com>", "list_archive_url": null, "date": "2017-08-29T09:14:17", "name": "[net-next] staging: irda: force to be a kernel module", "commit_ref": null, "pull_url": null, "state": "changes-requested", "archived": true, "hash": "e900efd2f5bed6ff76766fd21d738a2262df5e79", "submitter": { "id": 11800, "url": "http://patchwork.ozlabs.org/api/people/11800/?format=api", "name": "Greg KH", "email": "gregkh@linuxfoundation.org" }, "delegate": { "id": 34, "url": "http://patchwork.ozlabs.org/api/users/34/?format=api", "username": "davem", "first_name": "David", "last_name": "Miller", "email": "davem@davemloft.net" }, "mbox": "http://patchwork.ozlabs.org/project/netdev/patch/20170829091417.GA9481@kroah.com/mbox/", "series": [ { "id": 330, "url": "http://patchwork.ozlabs.org/api/series/330/?format=api", "web_url": "http://patchwork.ozlabs.org/project/netdev/list/?series=330", "date": "2017-08-29T09:14:17", "name": "[net-next] staging: irda: force to be a kernel module", "version": 1, "mbox": "http://patchwork.ozlabs.org/series/330/mbox/" } ], "comments": "http://patchwork.ozlabs.org/api/patches/807006/comments/", "check": "pending", "checks": "http://patchwork.ozlabs.org/api/patches/807006/checks/", "tags": {}, "related": [], "headers": { "Return-Path": "<netdev-owner@vger.kernel.org>", "X-Original-To": "patchwork-incoming@ozlabs.org", "Delivered-To": "patchwork-incoming@ozlabs.org", "Authentication-Results": "ozlabs.org;\n\tspf=none (mailfrom) smtp.mailfrom=vger.kernel.org\n\t(client-ip=209.132.180.67; helo=vger.kernel.org;\n\tenvelope-from=netdev-owner@vger.kernel.org;\n\treceiver=<UNKNOWN>)", "Received": [ "from vger.kernel.org (vger.kernel.org [209.132.180.67])\n\tby ozlabs.org (Postfix) with ESMTP id 3xhNJ43C3Sz9t33\n\tfor <patchwork-incoming@ozlabs.org>;\n\tTue, 29 Aug 2017 19:14:44 +1000 (AEST)", "(majordomo@vger.kernel.org) by vger.kernel.org via listexpand\n\tid S1751646AbdH2JOM (ORCPT <rfc822;patchwork-incoming@ozlabs.org>);\n\tTue, 29 Aug 2017 05:14:12 -0400", "from mail.linuxfoundation.org ([140.211.169.12]:49606 \"EHLO\n\tmail.linuxfoundation.org\" rhost-flags-OK-OK-OK-OK) by vger.kernel.org\n\twith ESMTP id S1751329AbdH2JOL (ORCPT\n\t<rfc822;netdev@vger.kernel.org>); Tue, 29 Aug 2017 05:14:11 -0400", "from localhost (LFbn-1-12253-150.w90-92.abo.wanadoo.fr\n\t[90.92.67.150])\n\tby mail.linuxfoundation.org (Postfix) with ESMTPSA id C8DD58A1;\n\tTue, 29 Aug 2017 09:14:10 +0000 (UTC)" ], "Date": "Tue, 29 Aug 2017 11:14:17 +0200", "From": "Greg Kroah-Hartman <gregkh@linuxfoundation.org>", "To": "davem@davemloft.net, samuel@sortiz.org", "Cc": "netdev@vger.kernel.org, linux-kernel@vger.kernel.org,\n\tdevel@driverdev.osuosl.org", "Subject": "[PATCH net-next] staging: irda: force to be a kernel module", "Message-ID": "<20170829091417.GA9481@kroah.com>", "References": "<20170829070929.GA15824@kroah.com>", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=us-ascii", "Content-Disposition": "inline", "In-Reply-To": "<20170829070929.GA15824@kroah.com>", "User-Agent": "Mutt/1.8.3 (2017-05-23)", "Sender": "netdev-owner@vger.kernel.org", "Precedence": "bulk", "List-ID": "<netdev.vger.kernel.org>", "X-Mailing-List": "netdev@vger.kernel.org" }, "content": "Now that the IRDA networking code has moved into drivers/staging/, the\nlink order is changed for when it is initialized if built into the\nsystem. This can cause a crash when initializing as the netfilter core\nhasn't been initialized yet.\n\nSo force the IRDA code to be built as a module, preventing the crash.\n\nReported-by: kernel test robot <fengguang.wu@intel.com>\nSigned-off-by: Greg Kroah-Hartman gregkh@linuxfoundation.org\n---\n drivers/staging/irda/net/Kconfig | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)", "diff": "diff --git a/drivers/staging/irda/net/Kconfig b/drivers/staging/irda/net/Kconfig\nindex 6abeae6c666a..9c6489bcb596 100644\n--- a/drivers/staging/irda/net/Kconfig\n+++ b/drivers/staging/irda/net/Kconfig\n@@ -3,7 +3,7 @@\n #\n \n menuconfig IRDA\n-\tdepends on NET && !S390\n+\tdepends on NET && !S390 && m\n \ttristate \"IrDA (infrared) subsystem support\"\n \tselect CRC_CCITT\n \t---help---\n", "prefixes": [ "net-next" ] }