aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/memblock.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/mm/memblock.c b/mm/memblock.c
index 5499ab162b9d..c3703abf057e 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -192,8 +192,6 @@ static int memblock_double_array(struct memblock_type *type)
192 if (!memblock_can_resize) 192 if (!memblock_can_resize)
193 return -1; 193 return -1;
194 194
195 pr_debug("memblock: %s array full, doubling...", memblock_type_name(type));
196
197 /* Calculate new doubled size */ 195 /* Calculate new doubled size */
198 old_size = type->max * sizeof(struct memblock_region); 196 old_size = type->max * sizeof(struct memblock_region);
199 new_size = old_size << 1; 197 new_size = old_size << 1;
@@ -221,6 +219,9 @@ static int memblock_double_array(struct memblock_type *type)
221 } 219 }
222 new_array = __va(addr); 220 new_array = __va(addr);
223 221
222 memblock_dbg("memblock: %s array is doubled to %ld at [%#010llx-%#010llx]",
223 memblock_type_name(type), type->max * 2, (u64)addr, (u64)addr + new_size - 1);
224
224 /* Found space, we now need to move the array over before 225 /* Found space, we now need to move the array over before
225 * we add the reserved region since it may be our reserved 226 * we add the reserved region since it may be our reserved
226 * array itself that is full. 227 * array itself that is full.
@@ -672,7 +673,7 @@ static void memblock_dump(struct memblock_type *region, char *name)
672 base = region->regions[i].base; 673 base = region->regions[i].base;
673 size = region->regions[i].size; 674 size = region->regions[i].size;
674 675
675 pr_info(" %s[0x%x]\t0x%016llx - 0x%016llx, 0x%llx bytes\n", 676 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes\n",
676 name, i, base, base + size - 1, size); 677 name, i, base, base + size - 1, size);
677 } 678 }
678} 679}