diff options
author | Toshi Kani <toshi.kani@hp.com> | 2013-07-03 18:02:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:31 -0400 |
commit | 4996eed867a7215958267252fafddc41d5f26140 (patch) | |
tree | 71977e18000fc0aaddf44b7454b3d76f3ac09b4a /mm/memory_hotplug.c | |
parent | f15bdfa802bfa5eb6b4b5a241b97ec9fa1204a35 (diff) |
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>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory_hotplug.c')
-rw-r--r-- | mm/memory_hotplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index a66d0023d219..e3097f299f67 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c | |||
@@ -75,7 +75,7 @@ static struct resource *register_memory_resource(u64 start, u64 size) | |||
75 | res->end = start + size - 1; | 75 | res->end = start + size - 1; |
76 | res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; | 76 | res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
77 | if (request_resource(&iomem_resource, res) < 0) { | 77 | if (request_resource(&iomem_resource, res) < 0) { |
78 | printk("System RAM resource %pR cannot be added\n", res); | 78 | pr_debug("System RAM resource %pR cannot be added\n", res); |
79 | kfree(res); | 79 | kfree(res); |
80 | res = NULL; | 80 | res = NULL; |
81 | } | 81 | } |