]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mm/memory_hotplug.c: change normal message to use pr_debug
authorToshi Kani <toshi.kani@hp.com>
Fri, 7 Jun 2013 00:07:54 +0000 (10:07 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 7 Jun 2013 05:42:15 +0000 (15:42 +1000)
commita226b573e95504125babaea39a9491379e6e9f9e
tree7dd9eef7f7a5750dffe9cbf992b9552b6cea645f
parent91e20931addbf524eafa82048d59b34bbb2591e9
mm/memory_hotplug.c: change normal message to use pr_debug

During early boot-up, iomem_resource is set up from the boot descriptor
table, such as EFI Memory Table and e820.  Later, acpi_memory_device_add()
calls add_memory() for each ACPI memory device object as it enumerates
ACPI namespace.  This add_memory() call is expected to fail in
register_memory_resource() at boot since iomem_resource has been set up
from EFI/e820.  As a result, add_memory() returns -EEXIST, which
acpi_memory_device_add() handles as the normal case.

This scheme works fine, but the following error message is
logged for every ACPI memory device object during boot-up.

  "System RAM resource %pR cannot be added\n"

This patch changes register_memory_resource() to use pr_debug() for the
message as it shows up under the normal case.

Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memory_hotplug.c