From: Len Brown <lenb@kernel.org>
To: Frank Seidel <fseidel@suse.de>
Cc: linux kernel <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
linux-acpi@vger.kernel.org, linux-pm@lists.linux-foundation.org,
shaohuhua.li@intel.com, kristen.c.accardi@intel.com,
frank@f-seidel.de, Frans Pop <elendil@planet.nl>,
Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Subject: Re: [PATCHv2] ACPI: add missing KERN_* constants to printks
Date: Sat, 07 Feb 2009 00:38:32 -0500 (EST) [thread overview]
Message-ID: <alpine.LFD.2.00.0902070022160.26256@localhost.localdomain> (raw)
In-Reply-To: <4989BC3B.2070508@suse.de>
applied -- though I changed the two in acpi_os_vprintf()
to be KERN_CONT, or we'd get a bunch of <4>'s in
constructed messages. Yes, we take our chances with SMP on those.
thanks,
Len Brown, Intel Open Source Technology Center
On Wed, 4 Feb 2009, Frank Seidel wrote:
> From: Frank Seidel <frank@f-seidel.de>
>
> According to kerneljanitors todo list all printk calls (beginning
> a new line) should have an according KERN_* constant.
> Those are the missing peaces here for the acpi subsystem.
>
> Signed-off-by: Frank Seidel <frank@f-seidel.de>
> ---
> drivers/acpi/container.c | 5 +++--
> drivers/acpi/dock.c | 8 ++++----
> drivers/acpi/osl.c | 4 ++--
> drivers/acpi/pci_link.c | 2 +-
> drivers/acpi/sleep.c | 2 +-
> drivers/acpi/video.c | 2 +-
> 6 files changed, 12 insertions(+), 11 deletions(-)
>
> --- a/drivers/acpi/video.c
> +++ b/drivers/acpi/video.c
> @@ -1260,7 +1260,7 @@ static int acpi_video_bus_POST_info_seq_
> printk(KERN_WARNING PREFIX
> "This indicates a BIOS bug. Please contact the manufacturer.\n");
> }
> - printk("%llx\n", options);
> + printk(KERN_WARNING "%llx\n", options);
> seq_printf(seq, "can POST: <integrated video>");
> if (options & 2)
> seq_printf(seq, " <PCI video>");
> --- a/drivers/acpi/container.c
> +++ b/drivers/acpi/container.c
> @@ -163,7 +163,7 @@ static void container_notify_cb(acpi_han
> case ACPI_NOTIFY_BUS_CHECK:
> /* Fall through */
> case ACPI_NOTIFY_DEVICE_CHECK:
> - printk("Container driver received %s event\n",
> + printk(KERN_WARNING "Container driver received %s event\n",
> (type == ACPI_NOTIFY_BUS_CHECK) ?
> "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
> status = acpi_bus_get_device(handle, &device);
> @@ -174,7 +174,8 @@ static void container_notify_cb(acpi_han
> kobject_uevent(&device->dev.kobj,
> KOBJ_ONLINE);
> else
> - printk("Failed to add container\n");
> + printk(KERN_WARNING
> + "Failed to add container\n");
> }
> } else {
> if (ACPI_SUCCESS(status)) {
> --- a/drivers/acpi/pci_link.c
> +++ b/drivers/acpi/pci_link.c
> @@ -593,7 +593,7 @@ static int acpi_pci_link_allocate(struct
> return -ENODEV;
> } else {
> acpi_irq_penalty[link->irq.active] += PIRQ_PENALTY_PCI_USING;
> - printk(PREFIX "%s [%s] enabled at IRQ %d\n",
> + printk(KERN_WARNING PREFIX "%s [%s] enabled at IRQ %d\n",
> acpi_device_name(link->device),
> acpi_device_bid(link->device), link->irq.active);
> }
> --- a/drivers/acpi/dock.c
> +++ b/drivers/acpi/dock.c
> @@ -984,7 +984,7 @@ static int dock_add(acpi_handle handle)
>
> ret = device_create_file(&dock_device->dev, &dev_attr_docked);
> if (ret) {
> - printk("Error %d adding sysfs file\n", ret);
> + printk(KERN_ERR "Error %d adding sysfs file\n", ret);
> platform_device_unregister(dock_device);
> kfree(dock_station);
> dock_station = NULL;
> @@ -992,7 +992,7 @@ static int dock_add(acpi_handle handle)
> }
> ret = device_create_file(&dock_device->dev, &dev_attr_undock);
> if (ret) {
> - printk("Error %d adding sysfs file\n", ret);
> + printk(KERN_ERR "Error %d adding sysfs file\n", ret);
> device_remove_file(&dock_device->dev, &dev_attr_docked);
> platform_device_unregister(dock_device);
> kfree(dock_station);
> @@ -1001,7 +1001,7 @@ static int dock_add(acpi_handle handle)
> }
> ret = device_create_file(&dock_device->dev, &dev_attr_uid);
> if (ret) {
> - printk("Error %d adding sysfs file\n", ret);
> + printk(KERN_ERR "Error %d adding sysfs file\n", ret);
> device_remove_file(&dock_device->dev, &dev_attr_docked);
> device_remove_file(&dock_device->dev, &dev_attr_undock);
> platform_device_unregister(dock_device);
> @@ -1011,7 +1011,7 @@ static int dock_add(acpi_handle handle)
> }
> ret = device_create_file(&dock_device->dev, &dev_attr_flags);
> if (ret) {
> - printk("Error %d adding sysfs file\n", ret);
> + printk(KERN_ERR "Error %d adding sysfs file\n", ret);
> device_remove_file(&dock_device->dev, &dev_attr_docked);
> device_remove_file(&dock_device->dev, &dev_attr_undock);
> device_remove_file(&dock_device->dev, &dev_attr_uid);
> --- a/drivers/acpi/osl.c
> +++ b/drivers/acpi/osl.c
> @@ -228,10 +228,10 @@ void acpi_os_vprintf(const char *fmt, va
> if (acpi_in_debugger) {
> kdb_printf("%s", buffer);
> } else {
> - printk("%s", buffer);
> + printk(KERN_WARNING "%s", buffer);
> }
> #else
> - printk("%s", buffer);
> + printk(KERN_WARNING "%s", buffer);
> #endif
> }
>
> --- a/drivers/acpi/sleep.c
> +++ b/drivers/acpi/sleep.c
> @@ -679,7 +679,7 @@ static void acpi_power_off_prepare(void)
> static void acpi_power_off(void)
> {
> /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
> - printk("%s called\n", __func__);
> + printk(KERN_DEBUG "%s called\n", __func__);
> local_irq_disable();
> acpi_enable_wakeup_device(ACPI_STATE_S5);
> acpi_enter_sleep_state(ACPI_STATE_S5);
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
prev parent reply other threads:[~2009-02-07 5:38 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-04 14:34 [PATCH] ACPI: add missing KERN_* constants to printks Frank Seidel
2009-02-04 15:28 ` Frans Pop
2009-02-04 15:31 ` Frank Seidel
2009-02-04 15:44 ` Geert Uytterhoeven
2009-02-04 15:48 ` Frank Seidel
2009-02-04 16:12 ` Frans Pop
2009-02-04 16:48 ` Geert Uytterhoeven
2009-02-04 16:03 ` [PATCHv2] " Frank Seidel
2009-02-07 5:38 ` Len Brown [this message]
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=alpine.LFD.2.00.0902070022160.26256@localhost.localdomain \
--to=lenb@kernel.org \
--cc=Geert.Uytterhoeven@sonycom.com \
--cc=akpm@linux-foundation.org \
--cc=elendil@planet.nl \
--cc=frank@f-seidel.de \
--cc=fseidel@suse.de \
--cc=kristen.c.accardi@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=shaohuhua.li@intel.com \
/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