From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756116AbcH3Wrm (ORCPT ); Tue, 30 Aug 2016 18:47:42 -0400 Received: from mail-it0-f66.google.com ([209.85.214.66]:34463 "EHLO mail-it0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751202AbcH3Wrl (ORCPT ); Tue, 30 Aug 2016 18:47:41 -0400 MIME-Version: 1.0 In-Reply-To: <20160830164910.1248-11-jeff.mcgee@intel.com> References: <20160830164910.1248-1-jeff.mcgee@intel.com> <20160830164910.1248-11-jeff.mcgee@intel.com> From: "Rafael J. Wysocki" Date: Wed, 31 Aug 2016 00:47:39 +0200 X-Google-Sender-Auth: DlIABT-BRccQ6oVlraBbxLioNLY Message-ID: Subject: Re: [PATCH 10/15] acpi: Export acpi_bus_type To: jeff.mcgee@intel.com Cc: isg-gms@eclists.intel.com, Ankitprasad Sharma , "Rafael J. Wysocki" , Len Brown , ACPI Devel Maling List , Linux Kernel Mailing List Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 30, 2016 at 6:49 PM, wrote: > From: Ankitprasad Sharma > > Some modules, like i915.ko, needs to detect when certain ACPI features are > active inorder to prevent corruption on contended resources. > In particular, use of BIOS RapidStart Technology may corrupt the contents of > the reserved graphics memory, due to unalarmed hibernation. In which case > i915.ko cannot assume that it (reserved gfx memory) remains unmodified and > must recreate the contents and importantly not use it to store unrecoverable > user data. The above doesn't explain why you need to export acpi_bus_type at all. I suspect that this is in order to be able to do some hackish stuff on it, so I'm not going to approve this patch as is. > Signed-off-by: Ankitprasad Sharma > Cc: "Rafael J. Wysocki" > Cc: Len Brown > Cc: linux-acpi@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > Signed-off-by: Jeff McGee > --- > drivers/acpi/scan.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c > index 4b22ea8..7461bab 100644 > --- a/drivers/acpi/scan.c > +++ b/drivers/acpi/scan.c > @@ -1269,6 +1269,7 @@ struct bus_type acpi_bus_type = { > .remove = acpi_device_remove, > .uevent = acpi_device_uevent, > }; > +EXPORT_SYMBOL_GPL(acpi_bus_type); > > static void acpi_device_del(struct acpi_device *device) > { > -- Thanks, Rafael