From: Randy Dunlap <randy.dunlap@oracle.com>
To: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: len.brown@intel.com
Subject: Re: ACPI: thermal: create "thermal.off=1" to disable ACPI thermal support
Date: Sun, 12 Aug 2007 11:49:48 -0700 [thread overview]
Message-ID: <20070812114948.fe7e8bec.randy.dunlap@oracle.com> (raw)
In-Reply-To: <200708121059.l7CAxB3i003857@hera.kernel.org>
On Sun, 12 Aug 2007 10:59:11 GMT Linux Kernel Mailing List wrote:
> Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72b33ef8bb1ac7f6c5a16d23304ab25ddc73d93d
> Commit: 72b33ef8bb1ac7f6c5a16d23304ab25ddc73d93d
> Parent: 3864e8ccbba1dcdea87398ab80fdc8ae0fab7c45
> Author: Len Brown <len.brown@intel.com>
> AuthorDate: Sun Aug 12 00:12:17 2007 -0400
> Committer: Len Brown <len.brown@intel.com>
> CommitDate: Sun Aug 12 00:12:17 2007 -0400
>
> ACPI: thermal: create "thermal.off=1" to disable ACPI thermal support
>
> "thermal.off=1" disables all ACPI thermal support at boot time.
>
> CONFIG_ACPI_THERMAL=n can do this at build time.
> "# rmmod thermal" can do this at run time,
> as long as thermal is built as a module.
>
> WARNING: On some systems, disabling ACPI thermal support
> will cause the system to run hotter and reduce the
> lifetime of the hardware.
>
> Signed-off-by: Len Brown <len.brown@intel.com>
> ---
> Documentation/kernel-parameters.txt | 3 +++
> drivers/acpi/thermal.c | 9 ++++++++-
> 2 files changed, 11 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c
> index 5a62de1..61337d9 100644
> --- a/drivers/acpi/thermal.c
> +++ b/drivers/acpi/thermal.c
> @@ -78,6 +78,10 @@ static int tzp;
> module_param(tzp, int, 0);
> MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.\n");
>
> +static int off;
> +module_param(off, int, 0);
> +MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.\n");
> +
> static int acpi_thermal_add(struct acpi_device *device);
> static int acpi_thermal_remove(struct acpi_device *device, int type);
> static int acpi_thermal_resume(struct acpi_device *device);
Hi,
What's the purpose of the "\n" in the MODULE_PARM_DESC() string?
modinfo already terminates module parameter listings with a newline
after each parameter description. Some people insert newlines inside
these strings for pretty printing (which I don't find necessary),
but using a newline at the end of the string only makes the
parameter type (that is added by modinfo) appear on a separate line,
which IMO is worse that having it appear at the end of the parameter
line. E.g.,
$ modinfo -p asus_acpi.ko
asus_uid:UID for entries in /proc/acpi/asus.
asus_gid:GID for entries in /proc/acpi/asus.
$
but when the newline is omitted, it would be printed as
$ modinfo -p asus_acpi.ko
asus_uid:UID for entries in /proc/acpi/asus.
asus_gid:GID for entries in /proc/acpi/asus.
$
or when -p is not used (but only showing the parm lines here):
$ modinfo asus_acpi.ko
parm: asus_gid:GID for entries in /proc/acpi/asus.
(uint)
parm: asus_uid:UID for entries in /proc/acpi/asus.
(uint)
$
or if the newline is not used in the string:
$ modinfo asus_acpi.ko
parm: asus_gid:GID for entries in /proc/acpi/asus. (uint)
parm: asus_uid:UID for entries in /proc/acpi/asus. (uint)
$
where I posit that the latter is better than the former...
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
next parent reply other threads:[~2007-08-12 18:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200708121059.l7CAxB3i003857@hera.kernel.org>
2007-08-12 18:49 ` Randy Dunlap [this message]
2007-08-14 5:57 ` Len Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070812114948.fe7e8bec.randy.dunlap@oracle.com \
--to=randy.dunlap@oracle.com \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome