Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751702AbcDUDNH (ORCPT ); Wed, 20 Apr 2016 23:13:07 -0400 Received: from mail1.windriver.com ([147.11.146.13]:40928 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751487AbcDUDNE (ORCPT ); Wed, 20 Apr 2016 23:13:04 -0400 Date: Wed, 20 Apr 2016 23:12:49 -0400 From: Paul Gortmaker To: Daniel Lezcano CC: , Len Brown , , Subject: Re: [PATCH v2] drivers/idle: make intel_idle.c driver more explicitly non-modular Message-ID: <20160421031249.GH13379@windriver.com> References: <20160407165355.GA9188@linaro.org> <1461165906-21614-1-git-send-email-paul.gortmaker@windriver.com> <20160420181322.GM5862@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20160420181322.GM5862@linaro.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2886 Lines: 65 [Re: [PATCH v2] drivers/idle: make intel_idle.c driver more explicitly non-modular] On 20/04/2016 (Wed 20:13) Daniel Lezcano wrote: > On Wed, Apr 20, 2016 at 11:25:06AM -0400, Paul Gortmaker wrote: > > The Kconfig for this driver is currently declared with: > > > > config INTEL_IDLE > > bool "Cpuidle Driver for Intel Processors" > > > > ...meaning that it currently is not being built as a module by anyone. > > > > This was done in commit 6ce9cd8669fa1195fdc21643370e34523c7ac988 > > ("intel_idle: disable module support") since "...the module capability > > is cauing more trouble than it is worth." > > > > This was done over 5y ago, and Daniel adds that: > > > > ...the modular support has been removed from almost all the cpuidle > > drivers and the cpuidle framework is no longer assuming driver could > > be unloaded. > > > > Removing the modular dead code in the driver makes sense as this > > what have been done in the others drivers. > > > > So lets remove the modular code that is essentially orphaned, so that > > when reading the driver there is no doubt it is builtin-only. > > > > Since module_init translates to device_initcall in the non-modular > > case, the init ordering remains unchanged with this commit. At a > > later date we might want to consider whether subsys_init or another > > init category seems more appropriate than device_init. > > > > We replace module.h with moduleparam.h since the file does declare > > some module parameters, and leaving them as such is currently the > > easiest way to remain compatible with existing boot arg use cases. > > What about using __setup() ? so module* disappear from the file. No, it can't be __setup since moduleparam uses an instance of the filename as a prefix to the boot arg, and __setup does not. And we should stay compatible with existing boot arg use cases for people who have embedded such a setting in their grub config a long time ago and forgot it. It would take looking at and likely extending the early_param macro to provide a syntax compatible instance of what the module_param currently does if I recall correctly -- hence the above comment in the commit log. Paul. -- > > https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/block/brd.c#n463 > > > Note that MODULE_DEVICE_TABLE is a no-op for non-modular code. > > > > Also note that we can't remove intel_idle_cpuidle_devices_uninit() as > > that is still used for unwind purposes if the init fails. > > > > We also delete the MODULE_LICENSE tag etc. since all that information > > is already contained at the top of the file in the comments. > > > > Cc: Len Brown > > Cc: Daniel Lezcano > > Cc: rcochran@linutronix.de > > Cc: linux-pm@vger.kernel.org > > Signed-off-by: Paul Gortmaker