]> 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>
Thu, 27 Jun 2013 23:51:41 +0000 (09:51 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 28 Jun 2013 06:37:38 +0000 (16:37 +1000)
commit7e4d6ba0401113a0fde5fed87f0087cb69ec6a43
tree201ca73e4467999e300cf27d7f5237635b915fcd
parent5ca586fd80ca8dad363a3697cea0ee2fd2e948e8
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